* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --azul-limp: #0066cc;
    --verde-limp: #309a60fe;
    --azul-escuro: #003d7a;
    --verde-escuro: #007a3d;
    --branco: #ffffff;
    --cinza-claro: #f8f9fa;
    --cinza-escuro: #2c3e50;
    --sombra: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--cinza-escuro);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Header fixo animado - Mobile First */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: headerSlideDown 1s ease-out;
    overflow: hidden;
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Efeito de onda animada no header */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 102, 204, 0.05), 
        rgba(0, 204, 102, 0.07), 
        rgba(0, 102, 204, 0.05), 
        rgba(0, 204, 102, 0.07), 
        rgba(0, 102, 204, 0.05));
    background-size: 400% 100%;
    animation: headerWave 12s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes headerWave {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 0%;
    }
}

/* Responsividade do header - Mobile First */
.header-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    position: relative;
    z-index: 2;
    gap: 8px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza o logo */
    margin: 0 auto; /* Centraliza horizontalmente */
    text-decoration: none; /* Remove sublinhado do link */
    color: inherit; /* Herda a cor do elemento pai */
}

.logo:visited {
    color: inherit; /* Mantém a cor original mesmo após visitar o link */
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.logo-tagline {
    color: #2d5a2d;
    font-size: 0.75em;
    font-weight: 500;
    margin-top: 2px;
    text-align: center;
    opacity: 0.9;
}

.logo img {
    max-height: 6em; /* Diminuído de 8em para 6em no mobile */
    width: auto;
    animation: logoGlow 3s ease-in-out infinite, logoEntrance 1s ease-out 0.2s both;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0; /* Remove margem lateral */
}

.logo-text {
    max-height: 6em; /* Mesma altura da logo principal */
    width: auto;
    margin-top: 2px;
    opacity: 0.9;
    transition: all 0.3s ease;
    animation: logoTextEntrance 1s ease-out 0.6s both;
}

.logo-tagline {
    color: #2d5a2d;
    font-size: 0.75em;
    font-weight: 500;
    margin-top: 2px;
    text-align: center;
    opacity: 0.9;
}


nav ul {
    display: flex;
    list-style: none;
    gap: 6px; /* Diminuído de 8px para 6px */
    animation: navEntrance 1s ease-out 0.4s both;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    width: 100%;
    text-align: center;
    /* Força distribuição mais equilibrada */
    align-content: center;
}

nav a {
    text-decoration: none;
    color: var(--cinza-escuro);
    font-weight: 500;
    position: relative;
    padding: 6px 8px; /* Diminuído padding horizontal de 10px para 8px */
    transition: all 0.3s ease;
    border-radius: 15px;
    font-size: 0.82em; /* Diminuído de 0.85em para 0.82em */
    white-space: nowrap;
}

.cta-header {
    background: linear-gradient(135deg, var(--azul-limp), var(--verde-limp));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    animation: ctaPulse 2s ease-in-out infinite, ctaEntrance 1s ease-out 1s both;
    position: relative;
    overflow: hidden;
    font-size: 0.85em;
}

/* Tablet e Desktop */
@media (min-width: 768px) {
    header {
        padding: 12px 0;
    }

    .header-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
        gap: 15px;
    }

    .logo-section {
        align-items: center;
    }

    .logo {
        flex: 0 0 auto;
        justify-content: center;
    }
    
    .logo img {
        max-height: 8rem; /* Mantém o tamanho de 8em para desktop */
        margin: 0;
    }

    .logo-text {
        max-height: 8rem; /* Mesmo tamanho da logo principal em tablets */
        margin-top: 4px;
    }

    .logo-tagline {
        font-size: 0.8em;
        text-align: left;
        margin-top: 4px;
    }

    nav ul {
        gap: 25px;
        flex-wrap: nowrap;
        justify-content: center;
    }

    nav a {
        padding: 10px 15px;
        font-size: 1em;
    }

    .cta-header {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (min-width: 1024px) {
    header {
        padding: 15px 0;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .logo-section {
        flex: 0 0 auto;
        align-items: flex-start;
        margin: 0;
    }

    .logo {
        justify-content: flex-start;
        margin: 0;
    }

    .logo img {
        max-height: 3.5em;
    }

    .logo-text {
        max-height: 3.5em; /* Mesmo tamanho da logo principal em desktop */
        margin-top: 2px;
    }

    nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    nav ul {
        gap: 30px;
        justify-content: center;
    }
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 102, 204, 0.3));
}

.logo:hover {
    color: var(--verde-limp);
    text-shadow: 0 2px 8px rgba(0, 204, 102, 0.4);
}

@keyframes logoEntrance {
    from {
        opacity: 0;
        transform: translateX(-30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes logoGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

@keyframes logoTextEntrance {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

nav li {
    animation: navItemSlide 0.6s ease-out both;
}

nav li:nth-child(1) { animation-delay: 0.6s; }
nav li:nth-child(2) { animation-delay: 0.7s; }
nav li:nth-child(3) { animation-delay: 0.8s; }
nav li:nth-child(4) { animation-delay: 0.9s; }

@keyframes navEntrance {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navItemSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

nav a:hover,
nav a:active,
nav a:focus {
    color: var(--azul-limp);
    background: rgba(0, 102, 204, 0.08);
    transform: translateY(-1px);
}

/* Touch-friendly para mobile */
@media (max-width: 767px) {
    nav a:active {
        transform: scale(0.95);
        background: rgba(0, 102, 204, 0.15);
    }
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 3px;
    left: 50%;
    background: linear-gradient(90deg, var(--azul-limp), var(--verde-limp));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after,
nav a:active::after,
nav a:focus::after {
    width: 70%;
}

/* Estilo para link ativo (classe .active) */
nav a.active {
    color: var(--azul-limp) !important;
    font-weight: bold !important;
    background: rgba(0, 102, 204, 0.08) !important;
}

nav a.active::after {
    width: 70% !important;
}

/* Garantir que o link ativo não mude com hover */
nav a.active:hover {
    color: var(--azul-limp) !important;
    background: rgba(0, 102, 204, 0.08) !important;
    transform: none !important;
}

.cta-header::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.6s ease;
}

.cta-header:hover::before,
.cta-header:active::before {
    left: 100%;
}

@keyframes ctaEntrance {
    from {
        opacity: 0;
        transform: translateX(30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.cta-header:active {
    transform: translateY(0px) scale(0.98);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

/* Hero section imersiva - Mobile First */
/* Carrossel de imagens na hero */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
    opacity: 85%;
}
.carousel-track {
    display: flex;
    width: 100vw;
    height: 100%;
    overflow: hidden;
    position: relative;
    align-items: center;
    justify-content: center;
}
.carousel-img {
    min-width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity 1.5s ease, transform 1.5s ease;
    transform: scale(1.05);
    z-index: 2;
    display: block;
}

.carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Mobile-first: focar no centro-superior das imagens */
    object-position: center 30%;
    display: block;
    /* Filtro sutil para melhor legibilidade do texto */
    filter: brightness(0.7) contrast(1.1);
}

.carousel-img.active {
    opacity: 0.8;
    transform: scale(1);
    z-index: 3;
}
/* Efeito ken burns sutil */
.carousel-img.active img {
    animation: kenBurns 8s ease-in-out infinite alternate;
}

/* Indicadores do carousel */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    pointer-events: all;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.indicator.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translateX(0);
        object-position: center 30%;
    }
    100% {
        transform: scale(1.02) translateX(-1%);
        object-position: center 25%;
    }
}
.hero {
    min-height: calc(100vh - 80px);
    height: calc(100vh - 80px);
    background: linear-gradient(135deg, var(--azul-limp) 0%, var(--verde-limp) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    margin-top: 80px;
    padding: 40px 15px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: floatPattern 20s linear infinite;
}

@keyframes floatPattern {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-60px); }
}

/* Mobile muito pequeno - otimização específica */
@media (max-width: 480px) {
    .logo img {
        max-height: 5em; /* Ainda menor para telas muito pequenas */
    }

    nav ul {
        gap: 4px; /* Gap ainda menor */
        max-width: 100%;
        padding: 0 5px;
    }

    nav a {
        padding: 5px 6px;
        font-size: 0.78em; /* Fonte ainda menor */
    }

    .carousel-img img {
        /* Para telas muito pequenas, focar mais na parte superior */
        object-position: center 20%;
        filter: brightness(0.65) contrast(1.15);
    }
    
    .carousel-img.active {
        opacity: 0.75;
    }

    @keyframes kenBurns {
        0% {
            transform: scale(1.02) translateY(0);
            object-position: center 20%;
        }
        100% {
            transform: scale(1.04) translateY(-1%);
            object-position: center 15%;
        }
    }

    .hero-content {
        padding: 0 10px;
    }
}

/* Para telas muito pequenas - força 3+2 distribuição dos links */
@media (max-width: 400px) {
    .logo img {
        max-height: 4.5em; /* Ainda menor para otimizar espaço */
    }
    
    nav ul {
        gap: 3px;
        padding: 0 3px;
        /* Força uma distribuição específica para evitar links sozinhos */
        justify-content: space-evenly;
    }

    nav a {
        padding: 4px 5px;
        font-size: 0.75em;
        flex: 0 1 auto;
        min-width: fit-content;
    }

    /* Ajuste específico para o header em telas muito pequenas */
    .header-content {
        gap: 6px;
        padding: 0 8px;
    }

    .logo-tagline {
        font-size: 0.65em;
        margin-top: 1px;
    }

}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    padding: 0;
}

.hero h1 {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 15px;
    opacity: 0;
    animation: slideUp 1s ease-out 0.5s forwards;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1em;
    margin-bottom: 25px;
    opacity: 0;
    animation: slideUp 1s ease-out 1s forwards;
    line-height: 1.4;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: block;
    background: white;
    color: var(--azul-limp);
    padding: 14px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    margin: 8px auto;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: slideUp 1s ease-out 1.5s forwards;
    max-width: 280px;
    text-align: center;
}

.hero-cta:first-of-type {
    animation-delay: 1.3s;
}

.hero-cta:last-of-type {
    animation-delay: 1.6s;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-cta:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsividade do Hero */
@media (min-width: 768px) {
    .hero {
        min-height: calc(100vh - 90px);
        height: calc(100vh - 90px);
        margin-top: 90px;
        padding: 60px 40px;
    }

    .hero-content {
        max-width: 800px;
    }

    .hero h1 {
        font-size: 3.5em;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1.4em;
        margin-bottom: 35px;
    }

    .hero-cta {
        display: inline-block;
        padding: 18px 40px;
        font-size: 1.2em;
        margin: 15px;
        max-width: none;
    }

    /* Desktop: focar mais no centro das imagens */
    .carousel-img img {
        object-position: center center;
        filter: brightness(0.75) contrast(1.05);
    }
    
    .carousel-img.active {
        opacity: 0.9;
    }

    @keyframes kenBurns {
        0% {
            transform: scale(1) translateX(0);
            object-position: center center;
        }
        100% {
            transform: scale(1.03) translateX(-1%);
            object-position: 55% center;
        }
    }
}

@media (min-width: 1024px) {
    .hero {
        min-height: calc(100vh - 100px);
        height: calc(100vh - 100px);
        margin-top: 100px;
    }

    .hero h1 {
        font-size: 4em;
    }

    .hero p {
        font-size: 1.5em;
    }
}

/* Partículas flutuantes */
.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: floatParticle 15s linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Seções principais - Mobile First */
section {
    padding: 60px 15px;
    clear: both;
    position: relative;
}

#produtos {
    max-width: none;
    width: 100%;
    padding: 70px 15px 60px 15px;
    margin-top: 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
}

h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 35px;
    color: var(--azul-escuro);
    position: relative;
    line-height: 1.2;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--azul-limp), var(--verde-limp));
    border-radius: 2px;
}

/* Responsividade das seções */
@media (min-width: 768px) {
    section {
        padding: 80px 30px;
    }

    #produtos {
        padding: 100px 40px 80px 40px;
    }

    h2 {
        font-size: 2.3em;
        margin-bottom: 45px;
    }

    h2::after {
        width: 100px;
        height: 4px;
        bottom: -10px;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 100px 20px;
    }

    #produtos {
        padding: 120px 40px 100px 40px;
    }

    h2 {
        font-size: 2.5em;
        margin-bottom: 50px;
    }
}

/* Grid de produtos - Mobile First */
.produtos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Responsividade do grid de produtos */
@media (min-width: 480px) {
    .produtos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (min-width: 768px) {
    .produtos-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }
}

@media (min-width: 1024px) {
    .produtos-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        margin-top: 60px;
        max-width: 1400px;
    }
}

.produto-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 6px 20px var(--sombra);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.produto-card .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.produto-card .card-content {
    padding: 20px;
}

.produto-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: all 0.6s ease;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.2);
}

.produto-card:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
}

.produto-card:hover::before {
    left: 100%;
}

.produto-card h3 {
    font-size: 1.3em;
    color: var(--azul-escuro);
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Responsividade dos cards de produtos */
@media (min-width: 768px) {
    .produto-card {
        border-radius: 20px;
        box-shadow: 0 8px 25px var(--sombra);
    }

    .produto-card .card-image {
        height: 220px;
        border-radius: 20px 20px 0 0;
    }

    .produto-card .card-content {
        padding: 25px;
    }

    .produto-card h3 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }

    .produto-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
    }
}

@media (min-width: 1024px) {
    .produto-card {
        box-shadow: 0 10px 30px var(--sombra);
    }

    .produto-card .card-image {
        height: 240px;
    }

    .produto-card .card-content {
        padding: 30px;
    }

    .produto-card h3 {
        font-size: 1.5em;
    }

    .produto-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 102, 204, 0.2);
    }
}

/* Diferenciais animados - Mobile First */
.diferenciais {
    background: var(--cinza-claro);
    padding: 60px 15px;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

.diferencial-item {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--sombra);
    transition: all 0.3s ease;
}

.diferencial-item:hover {
    transform: translateY(-3px);
}

.diferencial-item:active {
    transform: translateY(-1px);
}

/* Responsividade dos diferenciais */
@media (min-width: 480px) {
    .diferenciais-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }
}

@media (min-width: 768px) {
    .diferenciais {
        padding: 80px 30px;
    }

    .diferenciais-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 35px;
        max-width: 1200px;
    }

    .diferencial-item {
        padding: 35px 20px;
        border-radius: 15px;
        box-shadow: 0 5px 20px var(--sombra);
    }

    .diferencial-item:hover {
        transform: translateY(-5px);
    }
}

@media (min-width: 1024px) {
    .diferenciais {
        padding: 100px 20px;
    }

    .diferenciais-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
    }

    .diferencial-item {
        padding: 40px 20px;
    }
}

.diferencial-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: var(--verde-limp);
    animation: iconBounce 2s ease-in-out infinite;
}

/* Responsividade dos ícones */
@media (min-width: 768px) {
    .diferencial-icon {
        font-size: 2.8em;
        margin-bottom: 18px;
    }
}

@media (min-width: 1024px) {
    .diferencial-icon {
        font-size: 3em;
        margin-bottom: 20px;
    }
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* FAQ Interativo - Mobile First */
.faq-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.faq-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.faq-image:hover img {
    transform: scale(1.05);
}

.faq-questions {
    width: 100%;
    max-width: 600px;
}

.faq-item {
    background: white;
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--sombra);
    overflow: hidden;
}

.faq-question {
    padding: 18px 15px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 0.95em;
}

.faq-question:hover,
.faq-question:active {
    background: var(--cinza-claro);
}

.faq-toggle {
    font-size: 1.3em;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
    font-size: 0.9em;
    line-height: 1.5;
}

.faq-answer.active {
    max-height: 200px;
    padding: 18px 15px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Responsividade do FAQ */
@media (min-width: 768px) {
    .faq-layout {
        flex-direction: row;
        gap: 40px;
        align-items: flex-start;
    }

    .faq-image {
        width: 350px;
        height: 300px;
        flex-shrink: 0;
    }

    .faq-questions {
        flex: 1;
        max-width: none;
    }

    .faq-item {
        margin-bottom: 15px;
        border-radius: 10px;
        box-shadow: 0 2px 10px var(--sombra);
    }

    .faq-question {
        padding: 22px 20px;
        font-size: 1em;
    }

    .faq-toggle {
        font-size: 1.4em;
    }

    .faq-answer {
        padding: 0 20px;
        font-size: 0.95em;
    }

    .faq-answer.active {
        padding: 22px 20px;
    }
}

@media (min-width: 1024px) {
    .faq-layout {
        gap: 60px;
    }

    .faq-image {
        width: 400px;
        height: 350px;
    }

    .faq-question {
        padding: 25px;
    }

    .faq-toggle {
        font-size: 1.5em;
    }

    .faq-answer {
        padding: 0 25px;
        font-size: 1em;
    }

    .faq-answer.active {
        padding: 25px;
    }
}

/* WhatsApp flutuante - Mobile First */
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    animation: whatsappFloat 3s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none;
}

/* Carrinho flutuante - Mobile First */
.carrinho-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    background: #101080;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
    animation: carrinhoFloat 3s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none;
}

.carrinho-contador-float {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--verde-limp);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7em;
    font-weight: bold;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

@keyframes carrinhoFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* Responsividade do Carrinho flutuante */
@media (min-width: 768px) {

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 25px;
        font-size: 1.6em;
        box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
    }

    .carrinho-float {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 25px;
        font-size: 1.6em;
        box-shadow: 0 4px 18px rgba(0, 102, 204, 0.4);
    }

    .carrinho-contador-float {
        width: 22px;
        height: 22px;
        font-size: 0.62em;
    }

    @keyframes carrinhoFloat {
        0% { transform: translateY(0); }
        50% { transform: translateY(-12px); }
        100% { transform: translateY(0); }
    }
}

@media (min-width: 1024px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 30px;
        font-size: 1.8em;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    
    .carrinho-float {
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 30px;
        font-size: 1.2em;
        box-shadow: 0 4px 20px #1010804f;
    }

    .carrinho-contador-float {
        width: 24px;
        height: 24px;
        font-size: 0.8em;
    }

    @keyframes carrinhoFloat {
        0% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
        100% { transform: translateY(0); }
    }
}

/* Seção Sobre Nós - Mobile First */
.sobre-nos {
    padding: 50px 20px;
    background: linear-gradient(135deg, var(--cinza-claro) 0%, white 100%);
}

.sobre-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sobre-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.sobre-text {
    flex: 1;
    max-width: 600px;
}

.sobre-text h2 {
    font-size: 2.2em;
    color: var(--azul-limp);
    margin-bottom: 20px;
    text-align: center;
}

.sobre-intro {
    font-size: 1.1em;
    color: var(--cinza-escuro);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}

.sobre-historia,
.sobre-missao {
    margin-bottom: 25px;
}

.sobre-historia h3,
.sobre-missao h3,
.sobre-valores h3 {
    color: var(--azul-limp);
    font-size: 1.3em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}


.sobre-valores {
    margin-top: 30px;
}

.valores-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

.valor-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.valor-item:hover {
    transform: translateY(-5px);
}

.valor-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.valor-item:hover .valor-icon {
    transform: scale(1.2);
}

/* Ícones coloridos na seção Sobre */
.valor-icon .fa-trophy {
    color: #FFD700; /* Dourado */
}

.valor-icon .fa-handshake {
    color: #4682B4; /* Azul aço */
}

.valor-icon .fa-bolt {
    color: #FF6347; /* Tomate */
}

.valor-icon .fa-seedling {
    color: #3CB371; /* Verde médio do mar */
}

.valor-item strong {
    display: block;
    color: var(--azul-limp);
    margin-bottom: 5px;
}

.valor-item p {
    color: var(--cinza-escuro);
    font-size: 0.9em;
    margin: 0;
}

.sobre-imagem {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.sobre-imagem img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.stat-item {
    background: var(--azul-limp);
    color: white;
    padding: 15px 10px;
    border-radius: 10px;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 1.5em;
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 0.8em;
    opacity: 0.9;
}

/* Responsividade da seção Sobre Nós */
@media (min-width: 768px) {
    .sobre-nos {
        padding: 70px 40px;
    }
    
    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .sobre-imagem img {
        height: 350px;
    }
}

@media (min-width: 1024px) {
    .sobre-nos {
        padding: 80px 60px;
    }
    
    .sobre-content {
        flex-direction: row;
        gap: 50px;
        align-items: flex-start;
    }
    
    .sobre-text {
        max-width: none;
    }
    
    .sobre-text h2 {
        text-align: left;
        font-size: 2.5em;
    }
    
    .sobre-intro {
        text-align: left;
    }
    
    .valores-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .sobre-imagem img {
        height: 400px;
    }
}

/* Depoimentos carrossel - Mobile First */
.depoimentos h2{
    color: rgb(21, 138, 255);
}

.depoimentos {
    background: linear-gradient(135deg, var(--azul-escuro), var(--verde-escuro));
    color: rgb(255, 231, 231);
    text-align: center;
    padding: 60px 15px;
}

.depoimento-item {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.depoimento-item p {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 15px;
}

.depoimento-item h4 {
    font-size: 0.9em;
    opacity: 0.9;
}

/* Responsividade dos depoimentos */
@media (min-width: 768px) {
    .depoimentos {
        padding: 80px 30px;
    }

    .depoimento-item {
        max-width: 500px;
        padding: 30px 20px;
    }

    .depoimento-item p {
        font-size: 1.1em;
        margin-bottom: 18px;
    }

    .depoimento-item h4 {
        font-size: 1em;
    }
}

@media (min-width: 1024px) {
    .depoimentos {
        padding: 100px 20px;
    }

    .depoimento-item {
        max-width: 600px;
        padding: 40px;
    }

    .depoimento-item p {
        font-size: 1.2em;
        margin-bottom: 20px;
    }

    .depoimento-item h4 {
        font-size: 1.1em;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer - Mobile First */
footer {
    background: var(--cinza-escuro);
    color: white;
    padding: 40px 15px 20px;
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: var(--verde-limp);
    font-size: 1.1em;
}

.footer-section p {
    font-size: 0.9em;
    line-height: 1.4;
    margin-bottom: 8px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: var(--azul-limp);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.social-icon:hover,
.social-icon:active {
    background: var(--verde-limp);
    transform: translateY(-2px);
}

/* Responsividade do Footer */
@media (min-width: 480px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 768px) {
    footer {
        padding: 50px 30px 25px;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 35px;
        max-width: 1200px;
    }

    .footer-section h3 {
        margin-bottom: 18px;
        font-size: 1.15em;
    }

    .footer-section p {
        font-size: 0.95em;
        margin-bottom: 10px;
    }

    .social-icons {
        gap: 14px;
        margin-top: 18px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95em;
    }

    .social-icon:hover {
        transform: translateY(-2.5px);
    }
}

@media (min-width: 1024px) {
    footer {
        padding: 60px 20px 30px;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
    }

    .footer-section h3 {
        margin-bottom: 20px;
        font-size: 1.2em;
    }

    .footer-section p {
        font-size: 1em;
        margin-bottom: 12px;
    }

    .social-icons {
        gap: 15px;
        margin-top: 20px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }

    .social-icon:hover {
        transform: translateY(-3px);
    }
}

/* Animações de scroll - Mobile First */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Otimizações para dispositivos muito pequenos (< 390px) */
@media (max-width: 389px) {
    header {
        padding: 6px 0;
    }

    .header-content {
        gap: 6px;
        padding: 0 8px;
    }

    .logo {
        font-size: 1.2em;
        letter-spacing: 0.5px;
    }

    nav ul {
        gap: 6px;
    }

    nav a {
        padding: 5px 8px;
        font-size: 0.8em;
        border-radius: 12px;
    }

    .cta-header {
        padding: 6px 12px;
        font-size: 0.8em;
        border-radius: 15px;
    }

    .hero {
        padding: 70px 10px 30px 10px;
    }

    .hero h1 {
        font-size: 1.9em;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .hero-cta {
        padding: 12px 24px;
        font-size: 0.9em;
        margin: 6px auto;
        max-width: 260px;
    }

    section {
        padding: 50px 10px;
    }

    #produtos {
        padding: 60px 10px 50px 10px;
    }

    h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    h2::after {
        width: 60px;
        height: 2px;
        bottom: -6px;
    }

    .produtos-grid {
        gap: 15px;
        margin-top: 30px;
    }

    .produto-card {
        padding: 15px;
        border-radius: 12px;
    }

    .produto-card h3 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .produto-card p {
        font-size: 0.9em;
        line-height: 1.4;
    }

    .diferenciais {
        padding: 50px 10px;
    }

    .diferencial-item {
        padding: 20px 12px;
        border-radius: 10px;
    }

    .diferencial-icon {
        font-size: 2.2em;
        margin-bottom: 12px;
    }

    .diferencial-item h3 {
        font-size: 1.1em;
        margin-bottom: 8px;
    }

    .diferencial-item p {
        font-size: 0.9em;
        line-height: 1.4;
    }

    .faq-question {
        padding: 15px 12px;
        font-size: 0.9em;
    }

    .faq-toggle {
        font-size: 1.2em;
        min-width: 18px;
    }

    .faq-answer {
        padding: 0 12px;
        font-size: 0.85em;
    }

    .faq-answer.active {
        padding: 15px 12px;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 1.3em;
    }

    .carrinho-float {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 1.3em;
    }

    .carrinho-contador-float {
        width: 18px;
        height: 18px;
        font-size: 0.65em;
    }

    .depoimentos {
        padding: 50px 10px;
    }

    .depoimento-item p {
        font-size: 0.95em;
    }

    .depoimento-item h4 {
        font-size: 0.85em;
    }

    footer {
        padding: 35px 10px 15px;
    }

    .footer-content {
        gap: 20px;
    }

    .footer-section h3 {
        font-size: 1em;
        margin-bottom: 12px;
    }

    .footer-section p {
        font-size: 0.85em;
        margin-bottom: 6px;
    }

    .social-icons {
        gap: 10px;
        margin-top: 12px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8em;
    }
}

/* Animações dinâmicas adicionais */
@keyframes waveMove {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(-50px); }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== ESTILOS DO E-COMMERCE ===== */

/* Preços dos produtos */
.produto-preco {
    margin: 15px 0;
    text-align: center;
}

.preco-original {
    font-size: 0.9em;
    color: #666;
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
}

.preco-final {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--verde-limp);
    display: block;
}

/* Botão Adicionar ao Carrinho */
.btn-adicionar-carrinho {
    width: 100%;
    padding: 12px 20px;
    background: var(--azul-limp);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.btn-adicionar-carrinho:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.btn-adicionar-carrinho:active {
    transform: translateY(0);
}

/* Carrinho no Header */
.btn-carrinho-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--azul-limp);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    margin-left: 15px;
}

.btn-carrinho-header:hover {
    background: var(--azul-escuro);
    transform: scale(1.05);
}

.carrinho-contador {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #111005;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.carrinho-contador.ativo {
    opacity: 1;
    transform: scale(1);
}

/* Sidebar do Carrinho */
.carrinho-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.carrinho-sidebar.aberto {
    right: 0;
}

.carrinho-header {
    padding: 20px;
    background: var(--azul-limp);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.carrinho-header h3 {
    margin: 0;
    font-size: 1.2em;
}

.fechar-carrinho {
    background: none;
    border: none;
    color: white;
    font-size: 2em;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrinho-itens {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.carrinho-vazio {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 50px;
}

.btn-ver-produtos {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background: var(--azul-limp);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-ver-produtos:hover {
    background: var(--azul-escuro);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Efeito de destaque para a seção de produtos */
@keyframes highlightSection {
    0% {
        background-color: rgba(0, 102, 204, 0.1);
    }
    50% {
        background-color: rgba(0, 102, 204, 0.2);
    }
    100% {
        background-color: transparent;
    }
}

.highlight-section {
    animation: highlightSection 1.5s ease-out;
    border-radius: 8px;
}

.carrinho-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    gap: 15px;
}

.carrinho-item-info {
    flex: 1;
}

.carrinho-item-nome {
    font-weight: 600;
    color: var(--azul-limp);
    margin-bottom: 5px;
}

.carrinho-item-preco {
    color: var(--verde-limp);
    font-weight: 500;
}

.carrinho-item-controles {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-quantidade {
    width: 30px;
    height: 30px;
    border: 1px solid var(--azul-limp);
    background: white;
    color: var(--azul-limp);
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-quantidade:hover {
    background: var(--azul-limp);
    color: white;
}

.quantidade-display {
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

.btn-remover {
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 8px;
    cursor: pointer;
    font-size: 0.8em;
    transition: background 0.2s ease;
}

.btn-remover:hover {
    background: #cc0000;
}

.carrinho-footer {
    padding: 20px;
    border-top: 2px solid #eee;
    background: #f8f9fa;
}

.carrinho-total {
    text-align: center;
    font-size: 1em;
    margin-bottom: 15px;
    color: var(--azul-limp);
}

.btn-finalizar-compra {
    width: 100%;
    padding: 15px;
    background: var(--verde-limp);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-finalizar-compra:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 204, 102, 0.3);
}

.btn-finalizar-compra:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Overlay para fechar carrinho */
.carrinho-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.carrinho-overlay.ativo {
    opacity: 1;
    visibility: visible;
}

/* Animação de produto adicionado */
@keyframes produtoAdicionado {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); background-color: #4CAF50; }
    100% { transform: scale(1); }
}

.btn-adicionar-carrinho.adicionado {
    animation: produtoAdicionado 0.6s ease;
}

/* Responsividade do carrinho */
@media (max-width: 768px) {
    .carrinho-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .btn-carrinho-header {
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin-left: 10px;
    }
    
    .carrinho-contador {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
}
