* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
}

/* Menu de Navegação */
nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.slogan {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    max-width: 200px;
    line-height: 1.4;
}

.logo {
    height: 120px;
    width: auto;
    display: block;
}

.menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.menu li a:hover {
    color: #667eea;
}

.menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s ease;
}

.menu li a:hover::after {
    width: 100%;
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-link svg {
    width: 24px;
    height: 24px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    border: 2px solid white;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Conteúdo Principal */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}

.hero {
    background: linear-gradient(135deg, #082537 0%, #0d3a52 100%);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.3em;
    opacity: 0.9;
}

/* Carrossel de Produtos Mais Vendidos */
.featured-products {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-title {
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    color: white;
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.carousel-slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.carousel-image-container {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.add-to-cart-btn-carousel {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
    z-index: 10;
}

.add-to-cart-btn-carousel:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.5);
    opacity: 1;
}

.add-to-cart-btn-carousel svg {
    width: 18px;
    height: 18px;
    stroke: white;
}

.carousel-product-name {
    color: white;
    font-size: 1.3em;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
}

.carousel-dot.active {
    background: white;
    border-color: white;
    width: 30px;
    border-radius: 6px;
}

/* Seção Sobre */
.about-section {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.about-section p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 20px;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* Seção Produtos */
.products-section {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.products-section h2 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.search-container {
    margin-bottom: 30px;
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 20px;
    width: 20px;
    height: 20px;
    color: #999;
    pointer-events: none;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 15px 50px 15px 55px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: white;
    outline: none;
}

.search-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-input::placeholder {
    color: #999;
}

.search-clear {
    position: absolute;
    right: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: color 0.3s ease;
    z-index: 1;
}

.search-clear:hover {
    color: #333;
}

.search-clear svg {
    width: 18px;
    height: 18px;
}

.search-results {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-size: 1em;
    display: none;
}

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

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    width: 100%;
    height: 250px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.3s ease;
}

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

.add-to-cart-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.8);
    z-index: 10;
}

.product-card:hover .add-to-cart-btn {
    opacity: 1;
    transform: scale(1);
}

.add-to-cart-btn:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.add-to-cart-btn:active {
    transform: scale(0.95);
}

.add-to-cart-btn svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    color: #333;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 3em;
    display: flex;
    align-items: center;
}

.product-description {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
    flex-grow: 1;
}

/* Modal de Detalhes do Produto */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.modal-close {
    color: #aaa;
    float: right;
    font-size: 32px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 10;
    cursor: pointer;
    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;
}

.modal-close:hover,
.modal-close:focus {
    color: #333;
    background: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
    overflow-y: auto;
    overflow-x: visible;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
}

.modal-product-image {
    flex: 0 0 300px;
    max-width: 100%;
    position: relative;
    overflow: visible;
}

.modal-product-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    object-fit: contain;
    background: #f8f8f8;
    padding: 20px;
    display: block;
}

.add-to-cart-btn-modal {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    pointer-events: auto;
}

.add-to-cart-btn-modal:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.5);
}

.add-to-cart-btn-modal .add-icon {
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    color: white;
}

.modal-product-info {
    flex: 1;
    min-width: 300px;
}

.modal-product-name {
    color: #333;
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.modal-product-description {
    color: #666;
    font-size: 1.1em;
    line-height: 1.8;
    white-space: pre-wrap;
    margin-bottom: 30px;
}

.modal-product-description br {
    margin-bottom: 10px;
}

.add-to-cart-btn-modal-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
    width: 100%;
    max-width: 300px;
}

.add-to-cart-btn-modal-bottom:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.add-to-cart-btn-modal-bottom:active {
    transform: translateY(0);
}

.add-to-cart-btn-modal-bottom svg {
    width: 22px;
    height: 22px;
    stroke: white;
}

/* Notificação do Carrinho */
.cart-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    font-weight: 500;
}

.cart-notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Seção Carrinho */
.cart-section {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cart-section h1 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.empty-cart svg {
    width: 100px;
    height: 100px;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-cart h2 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.empty-cart p {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.cart-items {
    margin-bottom: 30px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.cart-item:hover {
    background: #f9f9f9;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    background: #f8f8f8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-info h3 {
    color: #333;
    font-size: 1.2em;
    margin: 0;
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f8f8;
    padding: 8px 15px;
    border-radius: 25px;
}

.quantity-btn {
    background: white;
    border: 1px solid #ddd;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.quantity-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.quantity-value {
    font-weight: 600;
    color: #333;
    min-width: 30px;
    text-align: center;
}

.remove-btn {
    background: transparent;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background: #fee;
    transform: rotate(90deg);
}

.remove-btn svg {
    width: 20px;
    height: 20px;
}

.cart-summary {
    background: #f8f8f8;
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
}

.summary-content h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
}

.summary-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-clear {
    flex: 1;
    min-width: 150px;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.btn-whatsapp {
    flex: 2;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp .whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Responsivo para o modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }

    .modal-body {
        padding: 30px 20px;
        flex-direction: column;
        gap: 20px;
    }

    .modal-product-image {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .modal-product-image img {
        max-width: 100%;
    }

    .add-to-cart-btn-modal {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .modal-product-info {
        min-width: 100%;
    }

    .modal-product-name {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .modal-product-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .add-to-cart-btn-modal-bottom {
        max-width: 100%;
        padding: 12px 25px;
        font-size: 1em;
    }
    }

    .modal-close {
        right: 15px;
        top: 10px;
        font-size: 28px;
        width: 35px;
        height: 35px;
    }
}

/* Seção Contato */
.contact-section {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-section h2 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-section p {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #25D366;
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    fill: white;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

.instagram-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.instagram-icon {
    width: 50px;
    height: 50px;
    fill: white;
}

/* Rodapé */
.footer {
    background: #082537;
    color: white;
    padding: 50px 30px 20px;
    margin-top: 60px;
}

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

.footer-section h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background: #25D366;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.footer-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

.whatsapp-icon-small {
    width: 20px;
    height: 20px;
    fill: white;
}

.footer-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.footer-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

.instagram-icon-small {
    width: 20px;
    height: 20px;
    fill: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
}

/* Responsivo */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .menu.active {
        left: 0;
    }

    .menu li {
        width: 100%;
    }

    .menu li a {
        font-size: 18px;
        padding: 10px 0;
        display: block;
        border-bottom: 1px solid #eee;
    }

    .logo {
        height: 90px;
    }

    .slogan {
        display: none;
    }

    h1 {
        font-size: 2em;
    }

    .subtitle {
        font-size: 1.1em;
    }

    .hero {
        padding: 50px 20px;
    }

    .featured-products {
        margin-top: 40px;
        padding-top: 30px;
    }

    .featured-title {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .carousel-container {
        padding: 0 50px;
    }

    .carousel-wrapper {
        padding: 15px;
    }

    .carousel-image-container {
        width: 150px;
        height: 150px;
    }

    .add-to-cart-btn-carousel {
        width: 35px;
        height: 35px;
        bottom: 8px;
        right: 8px;
    }

    .add-to-cart-btn-carousel svg {
        width: 16px;
        height: 16px;
    }

    .carousel-product-name {
        font-size: 1.1em;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .carousel-btn-prev {
        left: 5px;
    }

    .carousel-btn-next {
        right: 5px;
    }

    .about-section {
        padding: 40px 20px;
    }

    .about-section h2 {
        font-size: 2em;
    }

    .about-section p {
        font-size: 1em;
    }

    .contact-section {
        padding: 40px 20px;
    }

    .contact-section h2 {
        font-size: 2em;
    }

    .contact-section p {
        font-size: 1em;
    }

    .products-section {
        padding: 40px 20px;
    }

    .products-section h2 {
        font-size: 2em;
    }

    .search-box {
        max-width: 100%;
    }

    .search-input {
        padding: 12px 45px 12px 50px;
        font-size: 0.95em;
    }

    .search-icon {
        left: 15px;
        width: 18px;
        height: 18px;
    }

    .search-clear {
        right: 12px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .product-image-container {
        height: 200px;
    }

    .product-name {
        font-size: 1.1em;
        min-height: 2.5em;
    }

    .product-description {
        font-size: 0.9em;
    }

    .add-to-cart-btn {
        opacity: 1;
        transform: scale(1);
        width: 40px;
        height: 40px;
    }

    .add-to-cart-btn svg {
        width: 18px;
        height: 18px;
    }

    .cart-notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
        text-align: center;
    }

    .cart-section {
        padding: 40px 20px;
    }

    .cart-section h1 {
        font-size: 2em;
    }

    .cart-item {
        flex-wrap: wrap;
        gap: 15px;
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
    }

    .cart-item-info h3 {
        font-size: 1em;
    }

    .summary-actions {
        flex-direction: column;
    }

    .btn-clear,
    .btn-whatsapp {
        width: 100%;
    }

    .contact-links {
        gap: 15px;
    }

    .whatsapp-link,
    .instagram-link {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .whatsapp-icon,
    .instagram-icon {
        width: 40px;
        height: 40px;
    }

    .footer {
        padding: 40px 20px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 1.3em;
    }

    .footer-section h4 {
        font-size: 1.1em;
    }
}

