/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    /* border: 1px solid red !important; REMOVA ESTA LINHA QUANDO CORRIGIR */
}

body {
    background: #fff;
}

/* ================= CONTAINER ================= */
.interface {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
}

/* ================= HEADER ================= */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 28px 0;
    background: transparent;
    transition: all 0.4s ease;
}

/* Header ao scroll */
header.scrolled {
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Grid do header - MODIFICADO */
header .interface {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* REMOVA A LINHA ABAIXO E USE O FLEX ACIMA */
    /* display: grid;
    grid-template-columns: auto 1fr auto; */
}

/* Logo */
.logo img {
    max-width: 55px;
    transition: 0.4s ease;
}

/* Logo menor e azul ao scroll */
header.scrolled .logo img {
    max-width: 40px;
    filter: brightness(0) saturate(100%) invert(9%) sepia(48%)
            saturate(4123%) hue-rotate(221deg)
            brightness(88%) contrast(108%);
}

/* ================= MENU ================= */
.menu-desktop {
    display: flex;
    justify-content: center;
    flex-grow: 1; /* ADICIONADO */
}

.menu-icons {
    display: flex;
    gap: 40px; /* REDUZIDO DE 50px */
    list-style: none;
    align-items: center;
    justify-content: center; /* ADICIONADO */
    /* margin-left: 200px; REMOVA ESTA LINHA */
}

.menu-icons a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    transition: 0.3s;
    min-width: 70px; /* ADICIONADO */
}

.menu-icons a i {
    font-size: 18px;
}

.menu-icons a:hover {
    transform: translateY(-3px);
    color: #a8d8ff;
}

/* Menu ao scroll */
header.scrolled .menu-icons a {
    color: #03113f;
}

header.scrolled .menu-icons a:hover {
    color: #0a4fff;
}

/* ================= DROPDOWN ================= */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    list-style: none;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown-menu li a {
    display: flex; /* MODIFICADO */
    flex-direction: row; /* ADICIONADO */
    align-items: center; /* ADICIONADO */
    gap: 10px; /* ADICIONADO */
    padding: 12px 24px;
    color: #03113f;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
    white-space: nowrap; /* ADICIONADO */
}

.dropdown-menu li a:hover {
    background: #f5f7ff;
    color: #0a4fff;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ================= BOTÃO ================= */
.btn-contato button {
    padding: 10px 22px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-contato button:hover {
    background: #fff;
    color: #03113f;
}

header.scrolled .btn-contato button {
    border-color: #03113f;
    color: #03113f;
}

header.scrolled .btn-contato button:hover {
    background: #03113f;
    color: #fff;
}

/* ================= HERO ================= */
.hero-site {
    height: 100vh;
    background-image: linear-gradient(
        rgba(3, 17, 63, 0.65),
        rgba(3, 17, 63, 0.65)
    ),
    url(../Imagem/imagem_fundo.png);
    background-size: cover;
    background-position: center;
}

.hero-site .interface {
    display: flex;
    align-items: center;
    height: 100%;
}

.txt-hero {
    max-width: 600px;
}

.txt-hero h1 {
    font-size: 4em;
    font-weight: 300;
    line-height: 70px;
    color: #fff;
}

.txt-hero h1 span {
    display: block;
    font-weight: 700;
}

.txt-hero p {
    margin: 20px 0;
    font-size: 20px;
    color: #e0e0e0;
}

.txt-hero button {
    width: 220px;
    height: 60px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.txt-hero button:hover {
    background: #fff;
    color: #03113f;
}

/* ================= CONTEÚDO IMAGENS ================= */
.conteudo-imagens {
    background: #f1ddddf1;
    padding: 80px 0;
}

.conteudo-imagens .interface {
    max-width: 1100px;
}

/* Bloco */
.bloco {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Zig-zag automático */
.bloco:nth-of-type(even) {
    flex-direction: row-reverse;
}

/* Texto */
.texto {
    flex: 1;
    max-width: 520px;
}

.texto h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 15px;
}
.texto-primeiro {
    color: #f00a0a; /* cor do "Profissionais" */
}
.texto-secundario {
    color: #b320ab;
}
.texto-terceiro{
    color:darkgreen
}
.texto p {
   font-size: 16px;
    font-weight: 900;      /* deixa mais “grossinho” sem exagerar */
    color: #4a4a4a;  
}

/* Imagem */
.imagem {
    flex: 0 0 300px;
    position: relative;
}

.imagem img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

/* Detalhe laranja */
.imagem::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #ff7a00;
    border-radius: 20px;
    z-index: 1;
}

.bloco:nth-of-type(odd) .imagem::after {
    transform: translate(-10px, 10px);
}

.bloco:nth-of-type(even) .imagem::after {
    transform: translate(10px, 10px);
}
.titulo-secao {
    text-align: center;
    margin-bottom: 80px;
}

.titulo-secao p {
    text-transform: uppercase;
    color: #0c0b0b;
    letter-spacing: 2px;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.titulo-secao h2 {
    font-size: 42px;
    font-weight: 700;
    color: #03113f;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    width: 100%; /* Garante que ocupe toda a largura */
}

.titulo-secao h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%; /* Centraliza a linha */
    transform: translateX(-50%); /* Ajusta precisamente */
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #03113f, #0a4fff);
    border-radius: 2px;
} 

span {
    display: block;
    font-weight: 700;
}

.texto h2 span {
    color: #000000; /* cor do "Transparência no" */
}

/* =========================PLANO DE SAUDE============== */

.planos-saude {
    background: #bbc6d4;
    padding: 90px 0 120px; /* Aumentei o padding-bottom */
    margin-bottom: -100px; /* Traz o rodapé para mais perto */
    position: relative;
    z-index: 1;
}
.grid-planos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.plano {
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.plano img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s ease;
}

/* Hover */
.plano:hover {
    transform: translateY(-6px);
}

.plano:hover img {
    filter: grayscale(0);
    opacity: 1;
}


/* ================= COLETA DOMICILIAR ================= */
.Coleta-domiciliar {
    background: linear-gradient(135deg, #f8fafd 0%, #eef2f7 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.Coleta-domiciliar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(3, 17, 63, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(10, 79, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* TÍTULO */
.titulo-secao .h2 {
    font-size: 42px;
    font-weight: 700;
    color: #03113f;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.titulo-secao .h2::after {
     content: '';
    position: absolute;
    bottom: -15px;
    left: 50%; /* Centraliza a linha */
    transform: translateX(-50%); /* Ajusta precisamente */
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #03113f, #0a4fff);
    border-radius: 2px;
}

/* BLOCO PRINCIPAL */
.bloco-coleta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(3, 17, 63, 0.08);
    border: 1px solid rgba(3, 17, 63, 0.08);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.bloco-coleta.reveal {
    transform: translateY(0);
    opacity: 1;
}

/* IMAGEM */
.imagem-coleta {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.imagem-coleta img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.bloco-coleta:hover .imagem-coleta img {
    transform: scale(1.05);
}

.imagem-coleta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(3, 17, 63, 0.1), rgba(10, 79, 255, 0.05));
    z-index: 1;
    pointer-events: none;
}

/* TEXTO */
.texto-coleta {
    padding: 20px;
}

.texto-coleta .h2 {
    font-size: 32px;
    font-weight: 700;
    color: #03113f;
    margin-bottom: 25px;
    line-height: 1.3;
}

.texto-coleta p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 35px;
    text-align: justify;
}

/* BOTÃO */
.texto-coleta button {
    background: linear-gradient(135deg, #03113f 0%, #0a4fff 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(10, 79, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.texto-coleta button::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: 0.5s;
}

.texto-coleta button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(10, 79, 255, 0.35);
}

.texto-coleta button:hover::before {
    left: 100%;
}

.texto-coleta button i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.texto-coleta button:hover i {
    transform: scale(1.2);
}

/* ELEMENTOS DECORATIVOS */
.bloco-coleta::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230a4fff' opacity='0.1'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
}



 /* ===== RODAPÉ ===== */
.rodape {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: #ecf0f1;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #3498db;
}

.rodape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #3498db);
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.rodape::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" opacity="0.03"><path d="M0 0v10c50 0 50 20 100 20s50-20 100-20 50 20 100 20 50-20 100-20 50 20 100 20 50-20 100-20 50 20 100 20 50-20 100-20 50 20 100 20 50-20 100-20 50 20 100 20 50-20 100-20 50 20 100 20V0z" fill="white"/></svg>');
    background-size: 1200px 120px;
    opacity: 0.1;
}

.rodape-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.rodape-coluna {
    padding: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: footerFadeUp 0.8s ease forwards;
}

.rodape-coluna:nth-child(1) { animation-delay: 0.1s; }
.rodape-coluna:nth-child(2) { animation-delay: 0.3s; }
.rodape-coluna:nth-child(3) { animation-delay: 0.5s; }

@keyframes footerFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* LOGO NO RODAPÉ */
.logo-rodape {
    max-width: 200px;
    height: auto;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    transition: all 0.5s ease;
    position: relative;
}

.logo-rodape:hover {
    transform: scale(1.05) rotate(-2deg);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(52, 152, 219, 0.5));
}

.rodape-coluna p {
    line-height: 1.7;
    color: #bdc3c7;
    margin-bottom: 0;
    font-size: 1.05rem;
    text-align: justify;
    padding-right: 20px;
}

/* TÍTULOS DAS COLUNAS */
.rodape-coluna h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.rodape-coluna h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.rodape-coluna h3:hover::after {
    width: 100%;
}

/* MENU DO RODAPÉ */
.rodape-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rodape-menu li {
    margin-bottom: 15px;
    transform: translateX(-10px);
    opacity: 0;
    animation: menuSlideIn 0.5s ease forwards;
}

.rodape-menu li:nth-child(1) { animation-delay: 0.4s; }
.rodape-menu li:nth-child(2) { animation-delay: 0.5s; }
.rodape-menu li:nth-child(3) { animation-delay: 0.6s; }
.rodape-menu li:nth-child(4) { animation-delay: 0.7s; }

@keyframes menuSlideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.rodape-menu a {
    color: #bdc3c7;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    padding: 10px 15px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.rodape-menu a::before {
    content: '›';
    color: #3498db;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.rodape-menu a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.5s ease;
}

.rodape-menu a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rodape-menu a:hover::before {
    transform: translateX(5px);
    color: #2ecc71;
}

.rodape-menu a:hover::after {
    left: 100%;
}

/* CONTATOS NO RODAPÉ */
.rodape-contato {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rodape-contato li {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-10px);
    animation: contactSlideIn 0.5s ease forwards;
}

.rodape-contato li:nth-child(1) { animation-delay: 0.6s; }
.rodape-contato li:nth-child(2) { animation-delay: 0.7s; }
.rodape-contato li:nth-child(3) { animation-delay: 0.8s; }

@keyframes contactSlideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.rodape-contato a, .rodape-contato li {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s;
    padding: 12px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.rodape-contato a::before, .rodape-contato li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #3498db, #2ecc71);
    transition: height 0.3s ease;
}

.rodape-contato a:hover::before, .rodape-contato li:hover::before {
    height: 100%;
}

.rodape-contato i {
    color: #3498db;
    font-size: 1.3rem;
    min-width: 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.rodape-contato span {
    line-height: 1.6;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.rodape-contato a:hover, .rodape-contato li:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.rodape-contato a:hover i, .rodape-contato li:hover i {
    color: #2ecc71;
    transform: scale(1.2);
}

/* REDES SOCIAIS (OPCIONAL) */
.rodape-redes {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.rede-social {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.rede-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    opacity: 0;
    transition: opacity 0.3s;
}

.rede-social i {
    position: relative;
    z-index: 1;
}

.rede-social:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.rede-social:hover::before {
    opacity: 1;
}

/* COPYRIGHT */
.rodape-copy {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 1s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.rodape-copy p {
    margin: 0;
    letter-spacing: 0.5px;
}

.rodape-copy::before {
    content: '❤';
    color: #e74c3c;
    margin-right: 10px;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}
/* ================= POP-UP DE COOKIES SIMPLES ================= */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 380px;
    width: calc(100% - 40px);
    z-index: 9999;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cookie-content {
    background: white;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 10px 30px rgba(3, 17, 63, 0.15);
    border: 1px solid #e6e9ff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 200px;
}

.cookie-icon {
    font-size: 24px;
    color: #d48c1e;
    background: #fff3e0;
    padding: 10px;
    border-radius: 12px;
}

.cookie-text h4 {
    font-size: 15px;
    color: #03113f;
    font-weight: 700;
    margin-bottom: 3px;
}

.cookie-text p {
    font-size: 12px;
    color: #4a5568;
    line-height: 1.4;
}

.cookie-link {
    color: #0a4fff;
    text-decoration: none;
    font-weight: 600;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-cookie {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
}

.btn-cookie.accept {
    background: #00a859;
    color: white;
}

.btn-cookie.accept:hover {
    background: #008c4d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 89, 0.2);
}

.btn-cookie.reject {
    background: transparent;
    color: #4a5568;
    border: 1px solid #e2e8f0;
}

.btn-cookie.reject:hover {
    background: #f0f2f5;
    transform: translateY(-2px);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .cookie-popup {
        bottom: 15px;
        right: 15px;
        left: 15px;
        max-width: none;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .cookie-text {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .btn-cookie {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn-cookie {
        width: 100%;
    }
}
/* BOTÃO VOLTAR AO TOPO */
.voltar-topo {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 1.2s;
}

.voltar-topo:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .rodape-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
    }
    
    .rodape-coluna {
        padding: 15px;
    }
    
    .logo-rodape {
        max-width: 180px;
    }
    
    .rodape-coluna h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .rodape {
        padding: 50px 0 25px;
    }
    
    .rodape-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .rodape-coluna h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .rodape-coluna h3:hover::after {
        width: 50px;
    }
    
    .rodape-menu a:hover {
        transform: translateX(0);
    }
    
    .rodape-contato a:hover, .rodape-contato li:hover {
        transform: translateX(0);
    }
    
    .rodape-coluna p {
        text-align: center;
        padding-right: 0;
    }
    
    .rodape-menu a, .rodape-contato a, .rodape-contato li {
        justify-content: center;
        text-align: left;
    }
    
    .voltar-topo {
        right: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .rodape {
        padding: 40px 0 20px;
    }
    
    .rodape-coluna {
        padding: 10px;
    }
    
    .logo-rodape {
        max-width: 150px;
    }
    
    .rodape-coluna h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .rodape-menu li, .rodape-contato li {
        margin-bottom: 15px;
    }
    
    .rodape-menu a, .rodape-contato a, .rodape-contato li {
        padding: 10px 15px;
    }
    
    .rodape-copy {
        font-size: 0.85rem;
    }
    
    .voltar-topo {
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* EFEITOS DE HOVER GLOBAIS */
.rodape a {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ANIMAÇÃO DE BRILHO PARA OS LINKS */
.rodape a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transition: width 0.3s ease;
}

.rodape a:hover::after {
    width: 100%;
}

/* DECORAÇÃO EXTRA */
.rodape .decoracao {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.05) 0%, rgba(46, 204, 113, 0.02) 70%);
    z-index: 0;
}

.rodape .decoracao:nth-child(1) {
    top: -150px;
    left: -150px;
}

.rodape .decoracao:nth-child(2) {
    bottom: -150px;
    right: -150px;
}
/* ================= TRANSIÇÃO ================= */
/* ESTADO INICIAL */
/* .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* QUANDO ENTRA NA TELA */
/* .reveal.active {
    opacity: 1;
    transform: translateY(0);
} */ 

/* ================= RESPONSIVO ================= */
@media (max-width: 900px) {
    .bloco,
    .bloco:nth-of-type(even) {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        max-width: 100%;
    }

    .imagem {
        flex: none;
        width: 90%;
    }
}

