/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #2196F3, #ff6b9d);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

.logo h1 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #fff3e0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 50%, #FCE4EC 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #2196F3, #ff6b9d);
    color: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.6);
}

.btn-secondary {
    background: white;
    color: #2196F3;
    border: 2px solid #2196F3;
}

.btn-secondary:hover {
    background: #2196F3;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Carrossel Hero - Versão Moderna */
.hero-carousel {
    width: 100%;
    max-width: 700px;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 450px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.02);
}



.carousel-slide img {
    max-width: 85%;
    max-height: 65%;
    object-fit: contain;
    border-radius: 20px;
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    mix-blend-mode: normal;
}

/* Garantir transparência para imagens PNG */
.carousel-slide img[src*=".png"] {
    background: transparent !important;
    mix-blend-mode: normal !important;
}

.carousel-slide:hover img {
    transform: scale(1.08) translateY(-5px);
    background: transparent;
}

.carousel-caption {
    text-align: center;
    color: white;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
    border-radius: 20px;
    backdrop-filter: blur(15px);
    margin-top: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.carousel-caption h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #ffd54f;
    font-weight: 600;
}

.carousel-caption p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
}

/* Controles do Carrossel */
.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding: 0 25px;
    position: relative;
}

.carousel-btn {
    background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1));
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.2));
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.4);
}

.carousel-dots {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 300px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.dot.active {
    background: linear-gradient(135deg, #ffd54f, #ffb300);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 213, 79, 0.6);
    border-color: rgba(255, 213, 79, 0.8);
    animation: pulse 2s infinite;
}

.dot:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.3));
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255,255,255,0.4);
}

/* Animações especiais */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 213, 79, 0.6);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 213, 79, 0.8);
    }
}

/* Indicador de progresso */
.carousel-progress {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
}

.carousel-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffd54f, #ffb300);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* Contador de slides */
.carousel-counter {
    position: absolute;
    top: -40px;
    right: 25px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.carousel-counter.counter-updated {
    transform: scale(1.1);
    background: rgba(255, 213, 79, 0.8);
    color: #000;
}

/* Redes Sociais */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd54f, #ffb300);
    color: #000;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 213, 79, 0.4);
}

.social-links-contact {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-links-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffd54f;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 20px;
    background: rgba(255, 213, 79, 0.1);
    border: 1px solid rgba(255, 213, 79, 0.3);
}

.social-links-contact a:hover {
    background: rgba(255, 213, 79, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 213, 79, 0.3);
}

.social-links-contact i {
    font-size: 1.1rem;
}

/* WhatsApp Direct Link in Contact Section */
.whatsapp-direct-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-top: 10px;
}

.whatsapp-direct-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128c7e, #25d366);
    color: white;
}

.whatsapp-direct-link i {
    font-size: 1.2em;
}

/* Modal de Produto */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    /* Mobile scroll fix */
-webkit-overflow-scrolling: touch;
overflow: auto;
overscroll-behavior: auto;
/* Global scroll fix for all devices */
scroll-behavior: smooth;
/* Force scroll to work on all mobile devices */
touch-action: pan-y;
/* Additional mobile scroll fixes */
scrollbar-width: thin;
scrollbar-color: rgba(0,0,0,0.3) transparent;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    animation: slideIn 0.4s ease;
    overflow: hidden;
    /* Mobile optimizations */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

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

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #333;
    background: white;
    transform: scale(1.1);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
}

.modal-image-container {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.modal-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 15px;
    background: transparent;
    mix-blend-mode: normal;
    transition: transform 0.3s ease;
}

/* Garantir transparência para imagens PNG no modal */
.modal-image-container img[src*=".png"] {
    background: transparent !important;
    mix-blend-mode: normal !important;
}

/* Ajuste específico para imagens de cones no modal */
.modal-image-container img[src*="Cones/"] {
    max-width: 60%;
    max-height: 80%;
}

/* Ajuste específico para imagens de skimos */
.category[data-category="skimos"] .product-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category[data-category="skimos"] .product-image img {
    object-fit: contain;
    max-width: 75%;
    max-height: 100%;
    border-radius: 10px;
}

/* Ajuste específico para imagens de skimos no modal */
.modal-image-container img[src*="Skimos"] {
    max-width: 70%;
    max-height: 85%;
}

.modal-image-container:hover img {
    transform: scale(1.05);
    background: transparent;
}

.modal-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-info h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.modal-info p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.product-details {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2196F3;
    font-weight: 500;
}

.detail-item i {
    color: #ffd54f;
    font-size: 1.2rem;
}

.product-specs {
    margin-bottom: 30px;
}

.product-specs h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-specs ul {
    list-style: none;
    padding: 0;
}

.product-specs li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    display: flex;
    justify-content: space-between;
}

.product-specs li:last-child {
    border-bottom: none;
}

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

.modal-actions .btn {
    flex: 1;
    min-width: 150px;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-actions .btn-primary {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
}

.modal-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
}

.modal-actions .btn-secondary {
    background: linear-gradient(135deg, #ff6b9d, #e91e63);
    color: white;
}

.modal-actions .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 2% auto;
        max-height: 96vh;
        /* Mobile scroll fix - FORÇAR FUNCIONAMENTO */
        overflow-y: scroll !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        overscroll-behavior: auto !important;
        position: relative !important;
        /* Ensure mobile scroll works */
        transform: none !important;
        height: auto !important;
        /* Force scroll to work */
        overflow: auto !important;
        /* Additional mobile scroll fixes */
        touch-action: pan-y !important;
        scroll-behavior: smooth !important;
        /* Ensure content is scrollable */
        display: block !important;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 0;
        /* Mobile scroll fix - FORÇAR FUNCIONAMENTO */
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
        /* Force content to be scrollable */
        position: relative !important;
        /* Ensure proper mobile layout */
        display: block !important;
        width: 100% !important;
    }
    
    .modal-image-container {
        padding: 15px;
        min-height: 180px;
        max-height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
        /* Ensure proper sizing */
        width: 100%;
        position: relative;
    }
    
    .modal-image-container img {
        max-width: 85%;
        max-height: 100%;
        object-fit: contain;
        /* Ensure proper proportions */
        width: auto;
        height: auto;
    }
    
    /* Proporções específicas para diferentes categorias no mobile */
    .modal-image-container img[src*="Paletas - Gourmet"] {
        max-width: 75%;
        max-height: 90%;
    }
    
    .modal-image-container img[src*="Pote 1L"] {
        max-width: 80%;
        max-height: 95%;
    }
    
    .modal-image-container img[src*="Pote 1,8L"] {
        max-width: 80%;
        max-height: 95%;
    }
    
    .modal-image-container img[src*="Picolés"] {
        max-width: 70%;
        max-height: 85%;
    }
    
    .modal-image-container img[src*="Cones"] {
        max-width: 65%;
        max-height: 80%;
    }
    
    .modal-image-container img[src*="Skimos"] {
        max-width: 70%;
        max-height: 85%;
    }
    
    .modal-image-container img[src*="Premium - Extrusados"] {
        max-width: 75%;
        max-height: 90%;
    }
    
    .modal-image-container img[src*="Açaí"] {
        max-width: 80%;
        max-height: 95%;
    }
    
    .modal-info {
        padding: 20px 15px;
        max-height: none !important;
        overflow: visible !important;
        /* Mobile scroll fix - FORÇAR FUNCIONAMENTO */
        position: relative !important;
        height: auto !important;
        /* Ensure content is scrollable */
        min-height: 0 !important;
        /* Force mobile layout */
        display: block !important;
        width: 100% !important;
        /* Ensure proper spacing */
        box-sizing: border-box !important;
    }
    
    .modal-info h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
        text-align: center;
        line-height: 1.3;
    }
    
    .modal-info p {
        font-size: 0.9rem;
        margin-bottom: 18px;
        text-align: center;
        line-height: 1.4;
    }
    
    .product-details {
        gap: 12px;
        margin-bottom: 18px;
        justify-content: center;
        flex-wrap: wrap;
        /* Ensure proper spacing */
        padding: 0 10px;
    }
    
    .detail-item {
        font-size: 0.85rem;
        padding: 8px 12px;
        background: rgba(33, 150, 243, 0.1);
        border-radius: 20px;
        border: 1px solid rgba(33, 150, 243, 0.2);
        /* Ensure proper sizing */
        white-space: nowrap;
        text-align: center;
    }
    
    .product-specs {
        margin-bottom: 18px;
        /* Ensure proper spacing */
        padding: 0 10px;
    }
    
    .product-specs h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .product-specs ul {
        background: rgba(248, 249, 250, 0.9);
        padding: 15px;
        border-radius: 12px;
        border: 1px solid #e9ecef;
        /* Ensure proper spacing */
        margin: 0;
    }
    
    .product-specs li {
        padding: 8px 0;
        font-size: 0.85rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        /* Ensure proper alignment */
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .product-specs li:last-child {
        border-bottom: none;
    }
    
    .product-specs li strong {
        color: #2196F3;
        font-weight: 600;
        font-size: 0.9rem;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
        /* Ensure proper spacing */
        padding: 0 10px;
    }
    
    .modal-actions .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.9rem;
        border-radius: 25px;
        /* Ensure proper sizing */
        min-height: 48px;
    }
    
    .close-modal {
        right: 12px;
        top: 12px;
        width: 36px;
        height: 36px;
        font-size: 22px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid #e9ecef;
        /* Ensure proper positioning */
        position: absolute;
        z-index: 1001;
    }
    
    /* FORÇAR SCROLL MOBILE - REGRAS ADICIONAIS */
    .modal {
        /* Force mobile scroll */
        overflow: auto !important;
        -webkit-overflow-scrolling: touch !important;
        overscroll-behavior: auto !important;
        touch-action: pan-y !important;
        /* Ensure proper mobile behavior */
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .modal-content {
        /* Force mobile scroll container */
        overflow-y: scroll !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        /* Ensure proper sizing */
        max-height: 96vh !important;
        height: auto !important;
        /* Force mobile layout */
        display: block !important;
        position: relative !important;
    }
    
    .modal-body {
        /* Force mobile scroll content */
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
        /* Ensure proper mobile layout */
        display: block !important;
        width: 100% !important;
        /* Force content to be scrollable */
        position: relative !important;
    }
    
    .modal-info {
        /* Force mobile scroll info */
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
        /* Ensure proper mobile layout */
        display: block !important;
        width: 100% !important;
        /* Force content to be scrollable */
        position: relative !important;
    }
}

/* Mobile Extra Small */
@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 1% auto;
        max-height: 98vh;
        /* Mobile scroll fix */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: auto;
        /* Force scroll to work */
        overflow: auto !important;
    }
    
    .modal-image-container {
        padding: 12px;
        min-height: 160px;
        max-height: 220px;
        /* Ensure proper sizing */
        width: 100%;
    }
    
    .modal-image-container img {
        max-width: 90%;
        max-height: 100%;
        /* Ensure proper proportions */
        width: auto;
        height: auto;
    }
    
    /* Proporções específicas para mobile extra small */
    .modal-image-container img[src*="Paletas - Gourmet"] {
        max-width: 80%;
        max-height: 95%;
    }
    
    .modal-image-container img[src*="Pote 1L"] {
        max-width: 85%;
        max-height: 98%;
    }
    
    .modal-image-container img[src*="Pote 1,8L"] {
        max-width: 85%;
        max-height: 98%;
    }
    
    .modal-info {
        padding: 15px 12px;
        /* Ensure proper spacing */
        min-height: 0;
    }
    
    .modal-info h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .modal-info p {
        font-size: 0.85rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .product-details {
        gap: 8px;
        margin-bottom: 15px;
        /* Ensure proper spacing */
        padding: 0 8px;
    }
    
    .detail-item {
        font-size: 0.8rem;
        padding: 6px 10px;
        /* Ensure proper sizing */
        white-space: nowrap;
        text-align: center;
    }
    
    .product-specs {
        margin-bottom: 15px;
        /* Ensure proper spacing */
        padding: 0 8px;
    }
    
    .product-specs h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .product-specs ul {
        padding: 12px;
        /* Ensure proper spacing */
        margin: 0;
    }
    
    .product-specs li {
        font-size: 0.8rem;
        padding: 6px 0;
        gap: 3px;
    }
    
    .product-specs li strong {
        font-size: 0.85rem;
    }
    
    .modal-actions {
        gap: 10px;
        margin-top: 15px;
        /* Ensure proper spacing */
        padding: 0 8px;
    }
    
    .modal-actions .btn {
        padding: 12px 16px;
        font-size: 0.85rem;
        /* Ensure proper sizing */
        min-height: 44px;
    }
    
    .close-modal {
        right: 8px;
        top: 8px;
        width: 32px;
        height: 32px;
        font-size: 18px;
        /* Ensure proper positioning */
        position: absolute;
        z-index: 1001;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .modal-content {
        width: 92%;
        max-width: 800px;
        margin: 3% auto;
        /* Ensure scroll works */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-body {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .modal-image-container {
        padding: 30px;
    }
    
    .modal-info {
        padding: 30px;
    }
    
    .modal-info h2 {
        font-size: 1.8rem;
    }
    
    .modal-info p {
        font-size: 1rem;
    }
    
    .product-details {
        gap: 18px;
    }
    
    .modal-actions {
        gap: 15px;
    }
    
    .modal-actions .btn {
        padding: 14px 22px;
        font-size: 0.95rem;
    }
}

/* Responsividade do Carrossel */
@media (max-width: 768px) {
    .hero-carousel {
        max-width: 100%;
        margin: 0 20px;
    }
    
    .carousel-container {
        height: 300px;
    }
    
    .carousel-slide img {
        max-width: 90%;
        max-height: 50%;
    }
    
    .carousel-caption {
        padding: 15px;
        margin-top: 5px;
    }
    
    .carousel-caption h3 {
        font-size: 1.2rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .carousel-controls {
        padding: 0 10px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.about-text h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Timeline */
.timeline {
    position: relative;
    margin: 30px 0;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #2196F3, #ff6b9d);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: #ffd54f;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    box-shadow: 0 3px 10px rgba(33, 150, 243, 0.3);
}

.timeline-content h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsividade da Timeline */
@media (max-width: 768px) {
    .timeline {
        padding-left: 20px;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-item {
        padding-left: 30px;
    }
    
    .timeline-item::before {
        left: -5px;
        width: 12px;
        height: 12px;
    }
    
    .timeline-year {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
    
    .timeline-content h4 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
}

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

.feature {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 3rem;
    color: #2196F3;
    margin-bottom: 20px;
}

.feature h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-main-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.about-gallery img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.about-gallery img:hover {
    transform: scale(1.05);
}

/* Products Section */
.products {
    padding: 100px 0;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 70%, #E91E63 100%);
    color: white;
}

/* Filtros de Produtos */
.product-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #ffd54f;
    color: #333;
    border-color: #ffd54f;
    box-shadow: 0 4px 15px rgba(255, 213, 79, 0.4);
}

/* Categorias de Produtos */
.category {
    display: block !important;
    transition: all 0.3s ease;
    visibility: visible !important;
    opacity: 1 !important;
}

.category.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.products .section-header h2,
.products .section-header p {
    color: white;
}

.product-categories {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.category h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.category h3 i {
    margin-right: 15px;
    color: #ffd54f;
}

/* Subcategorias */
.subcategory-title {
    font-size: 1.4rem;
    color: #ffd54f;
    margin: 40px 0 25px 0;
    text-align: center;
    font-weight: 600;
}

.subcategory-title i {
    margin-right: 10px;
    color: white;
}

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

.product-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.product-image {
    height: 180px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Ajuste específico para imagens de picolés */
.category[data-category="picoles"] .product-image,
.category[data-category="kids"] .product-image {
    height: 220px;
}

.category[data-category="picoles"] .product-image img,
.category[data-category="kids"] .product-image img {
    object-fit: contain;
    max-width: 80%;
    max-height: 100%;
}

/* Ajuste específico para imagens de sundaes */
.category[data-category="sundae"] .product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category[data-category="sundae"] .product-image img {
    object-fit: contain;
    max-width: 90%;
    max-height: 100%;
    border-radius: 10px;
}

/* Ajuste específico para imagens de paletas gourmet */
.category[data-category="paletas"] .product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category[data-category="paletas"] .product-image img {
    object-fit: contain;
    max-width: 85%;
    max-height: 100%;
    border-radius: 10px;
}

/* Ajuste específico para imagens de copos gelly */
.category[data-category="copos"] .product-image {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category[data-category="copos"] .product-image img {
    object-fit: contain;
    max-width: 75%;
    max-height: 100%;
    border-radius: 10px;
}

/* Ajuste específico para imagens de premielly */
.category[data-category="especiais"] .product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category[data-category="especiais"] .product-image img {
    object-fit: contain;
    max-width: 70%;
    max-height: 100%;
    border-radius: 10px;
}

/* Estilos para a seção de sabores */
.product-flavors {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-flavors p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.product-flavors p:first-child {
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-flavors p:last-child {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* Ajuste específico para imagens premium */
.category[data-category="premium"] .product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category[data-category="premium"] .product-image img {
    object-fit: contain;
    max-width: 90%;
    max-height: 100%;
    border-radius: 10px;
}

/* Ajuste específico para imagens de potes */
.category[data-category="sorvetes-massa"] .product-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category[data-category="sorvetes-massa"] .product-image img {
    object-fit: contain;
    max-width: 65%;
    max-height: 100%;
    border-radius: 10px;
}

/* Ajuste específico para imagens de cones */
.category[data-category="cones"] .product-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category[data-category="cones"] .product-image img {
    object-fit: contain;
    max-width: 70%;
    max-height: 100%;
    border-radius: 10px;
}

/* Ajuste específico para imagens da categoria Especial */
.category[data-category="especiais-skimos"] .product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category[data-category="especiais-skimos"] .product-image img {
    object-fit: contain;
    max-width: 80%;
    max-height: 100%;
    border-radius: 10px;
}

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

.product-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.product-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #2196F3;
    margin-top: 5px;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 8px;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2196F3;
}

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

/* Map Section */
.map-section {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-section h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.map-section h3 i {
    color: #2196F3;
    margin-right: 15px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-bottom: 30px;
}

.map-container iframe {
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

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

.map-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.map-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.2);
}

.map-feature i {
    font-size: 1.5rem;
    color: #2196F3;
    min-width: 24px;
}

.map-feature p {
    margin: 0;
    color: #555;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
}

.footer-section h3 {
    margin-bottom: 0;
    color: #2196F3;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #2196F3;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2196F3, #ff6b9d);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* WhatsApp Contact Section in Footer */
.whatsapp-contact-section {
    background: linear-gradient(135deg, #25d366, #128c7e);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-contact-section h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.whatsapp-contact-section h4 i {
    margin-right: 8px;
    font-size: 1.3em;
}

.whatsapp-contact-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 0.95em;
}

.whatsapp-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #25d366;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.whatsapp-contact-btn i {
    font-size: 1.4em;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128c7e, #25d366);
}

.floating-whatsapp-btn i {
    font-size: 1.5em;
}

.floating-whatsapp-text {
    white-space: nowrap;
}

/* WhatsApp Button Animation */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive Design for Floating WhatsApp */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp-btn {
        padding: 14px 20px;
        font-size: 1em;
    }
    
    .floating-whatsapp-text {
        display: none;
    }
    
    .floating-whatsapp-btn i {
        font-size: 1.8em;
    }
}

/* Navegação ativa */
.nav-menu a.active {
    color: #fff3e0;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #fff3e0;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #2196F3, #ff6b9d);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .map-section {
        margin-top: 40px;
        padding: 25px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .map-feature {
        padding: 15px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .hero-products-showcase {
        width: 300px;
        height: 300px;
        gap: 15px;
    }
    
    .hero-icon {
        width: 50px;
        height: 50px;
    }
    
    .about-main-image {
        max-width: 250px;
    }
    
    .about-gallery img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .map-section {
        padding: 20px;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .map-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-products-showcase {
        width: 250px;
        height: 250px;
        gap: 10px;
    }
    
    .hero-icon {
        width: 40px;
        height: 40px;
    }
    
    .product-image {
        height: 150px;
    }
    
    .about-main-image {
        max-width: 200px;
    }
}

/* Estilos para a seção de Franquia */
.franquia {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.franquia .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.franquia .section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.franquia .section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.franquia-image {
    text-align: center;
}

.franquia-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.franquia-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.franquia-benefits,
.franquia-support,
.franquia-cta {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.franquia-benefits h4,
.franquia-support h4,
.franquia-cta h4 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.franquia-benefits ul,
.franquia-support ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.franquia-benefits li,
.franquia-support li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.franquia-benefits li i,
.franquia-support li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #2196F3;
    font-size: 0.9rem;
}

.franquia-benefits strong,
.franquia-support strong {
    color: #FFD700;
}

.franquia-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.franquia-cta .btn {
    background: #FFD700;
    color: #333;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.franquia-cta .btn:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Responsividade para a seção de Franquia */
@media (max-width: 768px) {
    .franquia-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .franquia-image {
        order: -1;
    }
    
    .franquia .section-header h2 {
        font-size: 2.5rem;
    }
} 