/* ===== VARIÁVEIS CSS ===== */
:root {
    --primary-color: #FF4D8D;
    --primary-dark: #E6397A;
    --secondary-color: #6B3CC9;
    --accent-color: #00D4FF;
    --text-color: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --text-dark: #1a1a1a;
    --background-light: #F8F9FA;
    --background-dark: #1A1A1A;
    --white: #FFFFFF;
    --border-color: #E5E5E5;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --border-radius-small: 8px;
    --transition: all 0.3s ease;
}

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius-small);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* ===== SEÇÃO HERO ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 60, 201, 0.8), rgba(255, 77, 141, 0.8));
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 0 80px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .highlight {
    background: linear-gradient(45deg, var(--accent-color), var(--white));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SEÇÃO DE PRODUTOS ===== */
.products-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.025);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 3rem;
    gap: 15px;
}

.product-placeholder span {
    font-size: 1rem;
    text-align: center;
    padding: 0 20px;
}

.product-content {
    padding: 25px;
}

.product-header {
    margin-bottom: 15px;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.product-brand {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.product-technology {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.product-technology i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.product-technology span {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.product-price {
    margin-bottom: 20px;
    text-align: center;
}

.price-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions .btn {
    flex: 1;
    text-align: center;
    font-size: 0.9rem;
    padding: 10px 15px;
}

.products-cta {
    text-align: center;
    margin-top: 50px;
}

.no-products {
    text-align: center;
    padding: 60px 20px;
}

.no-products-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-products-content i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.no-products-content h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.no-products-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        margin: 0 10px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .product-actions {
        flex-direction: column;
    }
}

/* ===== SEÇÃO PROVA SOCIAL ===== */
.social-proof-section {
    padding: 60px 0;
    background: var(--background-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.proof-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.proof-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.proof-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.proof-icon i {
    font-size: 2rem;
    color: var(--white);
}

.proof-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.proof-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

/* ===== SEÇÃO CERTIFICAÇÕES ===== */
.certifications-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.certifications-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;
    margin-top: 3rem;
    overflow-x: auto;
    padding: 10px 0;
}

.certification-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 120px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    padding: 20px;
    flex-shrink: 0;
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.certification-item img {
    max-width: 100%;
    max-height: 100%;
    width: 160px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition);
}

.certification-item:hover img {
    filter: grayscale(0%);
}

.certification-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--text-light);
}

.certification-placeholder i {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.certification-placeholder span {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

/* ===== SEÇÃO FABRICANTES ===== */
.manufacturers-section {
    padding: 60px 0;
    background: var(--background-light);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.manufacturers-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.manufacturer-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 80px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    padding: 15px;
}

.manufacturer-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.manufacturer-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.manufacturer-item:hover img {
    transform: scale(1.05);
}

.manufacturer-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--text-light);
}

.manufacturer-placeholder i {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.manufacturer-placeholder span {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

/* ===== SEÇÃO PARCEIROS ===== */
.partner-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.3;
}

.partner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.partner-left {
    max-width: 600px;
}

.partner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.partner-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.partner-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #00d4ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-item span {
    font-weight: 500;
    font-size: 1rem;
}

.partner-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.partner-actions .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.partner-actions .btn-primary {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.partner-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.partner-actions .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.partner-actions .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.partner-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-stats {
    text-align: center;
}

.stats-circle {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stats-circle i {
    font-size: 4rem;
    color: #00d4ff;
}

.stats-numbers {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ===== SEÇÃO MAPA DO BRASIL ===== */
.brazil-map-section {
    padding: 80px 0;
    background: var(--white);
}

.map-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.brazil-map {
    position: relative;
    width: 400px;
    height: auto;
    min-height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    flex-shrink: 0;
    border: 2px solid var(--primary-color);
    padding: 20px;
    overflow: hidden;
}

.brazil-map-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.representative-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.representative-icon {
    position: absolute;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.representative-icon:hover {
    transform: translate(-50%, -50%) scale(1.1);
    z-index: 20;
}

.representative-icon.active {
    transform: translate(-50%, -50%) scale(1.05);
    z-index: 20;
}

.representative-icon.active .icon-photo {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(107, 60, 201, 0.4);
}

.representative-icon.active .icon-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* Melhorar visibilidade quando há múltiplos ícones próximos */
.representative-icon:nth-child(odd) {
    z-index: 11;
}

.representative-icon:nth-child(even) {
    z-index: 12;
}

.representative-icon:hover {
    z-index: 20 !important;
}

.representative-icon.active {
    z-index: 25 !important;
}

.icon-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
}

.icon-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.icon-info {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 30;
    min-width: 120px;
    text-align: center;
}

.representative-icon:hover .icon-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.icon-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.icon-region {
    display: block;
    font-size: 0.7rem;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
}

.icon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* ===== MODAL DE PARCEIRO ===== */
.partner-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.modal-close {
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: scale(1.2);
    color: #ff6b6b;
}

.modal-body {
    padding: 25px;
}

.partner-details {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.partner-photo-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    flex-shrink: 0;
    position: relative;
}

.partner-photo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-placeholder-large {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.partner-info {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.info-item i {
    color: var(--primary-color);
    width: 20px;
    font-size: 1rem;
}

.info-item span {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.partner-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.partner-actions .btn {
    flex: 1;
    max-width: 150px;
    text-align: center;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .partner-details {
        flex-direction: column;
        text-align: center;
    }
    
    .partner-photo-large {
        margin: 0 auto;
    }
    
    .partner-actions {
        flex-direction: column;
    }
    
    .partner-actions .btn {
        max-width: none;
    }
}

.state {
    position: absolute;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.state-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.state-name {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
}

.state:hover .state-dot {
    transform: scale(1.3);
    background: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.state:hover .state-name {
    opacity: 1;
}

.state.active .state-dot {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.state.active .state-name {
    opacity: 1;
}

.representative-info {
    flex: 1;
    min-height: 300px;
    position: relative;
}

.representative-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
}

.representative-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.representative-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-color);
    background: var(--background-light);
}

.representative-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--background-light);
    color: var(--text-light);
}

.placeholder-photo i {
    font-size: 3rem;
    color: var(--primary-color);
}

.representative-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.representative-title {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.representative-contact {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
    text-align: center;
}

.representative-contact i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 16px;
}

/* ===== SEÇÃO PRODUTOS ===== */
.products-section {
    padding: 100px 0;
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.product-card.featured {
    border: 3px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: var(--background-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.placeholder-image i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.product-content {
    padding: 30px;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.product-description {
    color: var(--text-light);
    margin-bottom: 20px;
}

.product-price {
    margin-bottom: 20px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-right: 10px;
}

.promo-price {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.current-price {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.price-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    text-align: center;
    margin: 10px 0;
    transition: all 0.3s ease;
}

.price-label:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.products-cta {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
}

/* ===== SEÇÃO QUEM SOMOS ===== */
.about-section {
    padding: 100px 0;
    background: var(--background-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.placeholder-about {
    width: 100%;
    height: 400px;
    background: var(--background-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.placeholder-about i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ===== SEÇÃO BLOG ===== */
.blog-section {
    padding: 100px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 30px;
}

.blog-card-content h3 {
    margin-bottom: 15px;
}

.blog-card-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-content h3 a:hover {
    color: var(--primary-color);
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.blog-meta i {
    margin-right: 5px;
}

.blog-excerpt {
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-dark);
}

.blog-cta {
    text-align: center;
}

/* ===== BANNER CAROUSEL ===== */
.hero-banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.banner-carousel {
    position: relative;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.banner-slide.active {
    opacity: 1;
}

.banner-image {
    width: 100%;
    height: 100%;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 40px;
}

.banner-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 20px;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.placeholder-banner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: var(--text-color);
}

.placeholder-banner i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.placeholder-banner p {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 60, 201, 0.8), rgba(255, 77, 141, 0.8));
    display: flex;
    align-items: center;
}

.banner-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.banner-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.banner-control:hover {
    background: rgba(255, 255, 255, 0.3);
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

.banner-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.banner-indicator.active {
    background: var(--white);
}

/* ===== SEÇÃO BENEFÍCIOS ===== */
.beneficios-section {
    padding: 100px 0;
    background: var(--white);
}



.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.beneficio-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.beneficio-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.beneficio-icon i {
    font-size: 2rem;
    color: var(--white);
}

.beneficio-card h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.beneficio-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== SEÇÃO DEPOIMENTOS ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--background-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    color: var(--text-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

/* ===== SEÇÃO CTA FINAL ===== */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.contact-info {
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: var(--border-radius-small);
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.form-group select option {
    background: var(--primary-color);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.form-actions .btn {
    flex: 1;
    min-width: 150px;
}

/* ===== FOOTER ===== */
.modern-footer {
    background: var(--background-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.whatsapp-float i {
    font-size: 2rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        gap: 20px;
        padding: 5px 0;
    }
    
    .certification-item {
        width: 160px;
        height: 100px;
        padding: 15px;
    }
    
    .certification-item img {
        width: 120px;
        height: 60px;
    }
    
    .manufacturers-grid {
        gap: 30px;
    }
    
    .manufacturer-item {
        width: 120px;
        height: 70px;
        padding: 12px;
    }
    
    .partner-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .partner-title {
        font-size: 2.5rem;
    }
    
    .partner-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .partner-actions {
        justify-content: center;
    }
    
    .partner-actions .btn {
        min-width: 160px;
        padding: 12px 25px;
    }
    
    .stats-circle {
        width: 150px;
        height: 150px;
    }
    
    .stats-circle i {
        font-size: 3rem;
    }
    
    .stats-numbers {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .map-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .brazil-map {
        width: 300px;
        height: auto;
        min-height: 300px;
    }
    
    .icon-photo {
        width: 40px;
        height: 40px;
    }
    
    .icon-info {
        min-width: 100px;
        padding: 6px 10px;
    }
    
    .icon-name {
        font-size: 0.7rem;
    }
    
    .icon-region {
        font-size: 0.6rem;
    }
    
    .icon-badge {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }
    
    .representative-info {
        min-height: 250px;
    }
    
    .representative-card {
        padding: 1.5rem;
    }
    
    .representative-photo {
        width: 100px;
        height: 100px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .banner-control {
        width: 40px;
        height: 40px;
    }
    
    .banner-prev {
        left: 10px;
    }
    
    .banner-next {
        right: 10px;
    }
    
    .banner-overlay {
        padding-bottom: 20px;
    }
    
    .banner-content {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .proof-card {
        padding: 30px 15px;
    }
    
    .beneficio-card {
        padding: 30px 15px;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .about-image img,
    .placeholder-about {
        height: 300px;
    }
    
    .certifications-grid {
        gap: 15px;
        padding: 5px 0;
    }
    
    .certification-item {
        width: 140px;
        height: 90px;
        padding: 12px;
    }
    
    .certification-item img {
        width: 100px;
        height: 50px;
    }
    
    .manufacturers-grid {
        gap: 20px;
    }
    
    .manufacturer-item {
        width: 100px;
        height: 60px;
        padding: 10px;
    }
    
    .brazil-map {
        width: 250px;
        height: auto;
        min-height: 250px;
    }
    
    .icon-photo {
        width: 35px;
        height: 35px;
    }
    
    .icon-info {
        min-width: 90px;
        padding: 5px 8px;
    }
    
    .icon-name {
        font-size: 0.6rem;
    }
    
    .icon-region {
        font-size: 0.5rem;
    }
    
    .icon-badge {
        width: 16px;
        height: 16px;
        font-size: 0.5rem;
    }
    
    .state-dot {
        width: 16px;
        height: 16px;
    }
    
    .representative-card {
        padding: 1rem;
    }
    
    .representative-photo {
        width: 80px;
        height: 80px;
    }
    
    .representative-details h3 {
        font-size: 1.2rem;
    }
    
    .banner-control {
        width: 35px;
        height: 35px;
    }
    
    .banner-indicators {
        bottom: 20px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
}

/* ===== REPRESENTATIVES SECTION ===== */
/* ===== SEÇÃO DE PARCEIROS EM TABELA ===== */
.partners-table-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partners-content {
    margin-top: 50px;
}

.partners-intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partners-intro h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.partners-intro p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.partners-table-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.partners-table {
    width: 100%;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.table-row:hover {
    background-color: #f8f9fa;
}

.table-row:last-child {
    border-bottom: none;
}

.state-column {
    padding: 20px;
    display: flex;
    align-items: center;
    border-right: 1px solid #e9ecef;
}

.state-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.state-column .state-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: 3px;
}

.state-column .state-sigla {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.state-count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.representatives-column {
    padding: 20px;
    border-right: 1px solid #e9ecef;
}

.representatives-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.representative-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.representative-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.representative-photo-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
}

.representative-photo-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder-small {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.representative-info-small {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.representative-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.representative-city {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.representative-item:hover .representative-name,
.representative-item:hover .representative-city {
    color: white;
}

.contact-column {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.85rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    color: white;
}

.btn-email {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.85rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.btn-email:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    color: white;
}

.no-partners {
    text-align: center;
    padding: 60px 20px;
}

.no-partners-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-partners-content i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.no-partners-content h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.no-partners-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .state-column,
    .representatives-column,
    .contact-column {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        padding: 15px;
    }
    
    .representatives-grid {
        justify-content: center;
    }
    
    .representative-item {
        min-width: 200px;
    }
    
    .contact-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.representatives-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.representatives-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.representatives-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.representatives-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.representatives-text .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.representatives-map {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.brazil-map {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto 30px;
    position: relative;
}

.brazil-map svg {
    width: 100%;
    height: auto;
}

.map-state {
    cursor: pointer;
    transition: all 0.3s ease;
    fill: #e9ecef;
    stroke: #ffffff;
    stroke-width: 2;
}

.map-state:hover {
    fill: var(--primary-color);
    transform: scale(1.05);
}

.map-state.active {
    fill: var(--primary-color);
    stroke: var(--primary-color);
}

.map-state[data-state="df"] {
    fill: var(--primary-color);
    stroke: var(--primary-color);
}

.representative-area {
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.representative-area:hover {
    fill: rgba(107, 60, 201, 0.3);
    transform: scale(1.1);
}

.representative-area.active {
    fill: rgba(107, 60, 201, 0.4);
    stroke: var(--primary-color);
    stroke-width: 3;
    transform: scale(1.05);
}

.representative-info {
    margin-top: 30px;
}

.representative-card {
    display: none;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 15px;
    box-shadow: var(--shadow-small);
    transition: all 0.3s ease;
}

.representative-card.active {
    display: flex;
}

.representative-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.representative-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-photo {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.representative-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.representative-title {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.representative-region {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.representative-contact {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.representative-contact i {
    margin-right: 5px;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .representatives-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .representatives-text h2 {
        font-size: 2rem;
    }
    
    .representatives-map {
        padding: 20px;
    }
    
    .brazil-map {
        max-width: 300px;
    }
    
    .representative-card {
        flex-direction: column;
        text-align: center;
    }
    
    .representative-photo {
        width: 60px;
        height: 60px;
    }
} 