@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Inter:wght@300;400;500&display=swap');


body{
    font-family: 'Lato', sans-serif;
    margin: 10px 10px 0px 10px;
    background-color: #722f37;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    
}

.navbar {
    background-color: #722f37;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 0.50rem;
    margin-top: -15px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img{
    height: 100px;
    width: 200px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #f5e6d3;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #621e1e;
    color: #f8efb2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

header nav ul li{
    margin-right: 80px;
    margin-bottom: 0;
    padding-left: -40px;
    margin: 15px 10px 20px -5px;
    font-size: 18px;
}

header nav h1{
    margin-left: 50px;
    font-family: 'Playfair Display', serif;
}

/* ========================= */
/* HERO                      */
/* ========================= */
.planos-hero {
    text-align: center;
    padding: 80px 20px 50px;
}

.planos-hero h1 {
    font-size: 2.6rem;
    margin-bottom: 12px;
}

.planos-hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ========================= */
/* CARDS - ALINHADOS NA MESMA LINHA */
/* ========================= */
.planos-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: nowrap !important;
    padding: 40px 20px 80px;
    max-width: 1350px;
    margin: 0 auto;
}

.plano-card {
    background: #f6e4c9;
    flex: 1 1 0;
    min-width: 0;
    width: 33.333%;
    max-width: 380px;
    min-height: 480px;
    border-radius: 20px;
    padding: 25px 22px 30px;
    text-align: center;
    position: relative;
    color: #4a1d24;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;

    opacity: 0;
    transform: translateY(40px);
    animation: aparecer 0.8s ease forwards;
}

.plano-card:nth-child(1) { animation-delay: 0.2s; }
.plano-card:nth-child(2) { animation-delay: 0.4s; }
.plano-card:nth-child(3) { animation-delay: 0.6s; }

.plano-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* ========================= */
/* TÍTULO                    */
/* ========================= */
.plano-card h2 {
    background: linear-gradient(135deg, #7a0c1e, #4a0812);
    color: #f5e6d3;
    padding: 18px 0;
    border-radius: 16px 16px 0 0;
    margin: -25px -22px 22px;
}

/* ========================= */
/* PREÇO                     */
/* ========================= */
.preco {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ========================= */
/* BOTÃO                     */
/* ========================= */
.btn-assinar {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f1d27a);
    color: #4a1d24;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
}

.btn-principal {
    animation: pulseDourado 2.5s infinite;
}

/* ========================= */
/* DESTAQUE                  */
/* ========================= */
.plano-card.recomendado {
    transform: scale(1.05);
    border: 3px solid #d4af37;
    z-index: 2;
    box-shadow: 0 0 35px rgba(212,175,55,0.5);
}

.plano-card.recomendado:hover {
    transform: scale(1.05) translateY(-10px);
}

/* ========================= */
/* BADGE                     */
/* ========================= */
.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #d4af37;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.badge.gold {
    background: linear-gradient(135deg, #ffd700, #e6b800);
}

/* ========================= */
/* MICRO COPY                */
/* ========================= */
.micro-copy {
    font-size: 0.8rem;
    margin-top: 10px;
    opacity: 0.75;
}

/* ========================= */
/* ANIMAÇÕES                 */
/* ========================= */
@keyframes aparecer {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseDourado {
    0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.6); }
    70% { box-shadow: 0 0 0 15px rgba(212,175,55,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

/* ========================= */
/* RESPONSIVO                */
/* ========================= */
@media (min-width: 1201px) {
    .planos-cards {
        flex-wrap: nowrap !important;
    }
}

@media (max-width: 1200px) {
    .planos-cards {
        flex-wrap: wrap;
        max-width: 800px;
    }
    
    .plano-card {
        width: calc(50% - 10px);
        max-width: 380px;
    }
    
    .plano-card:nth-child(3) {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .planos-cards {
        flex-direction: column;
        align-items: center;
    }

    .plano-card {
        width: 90% !important;
        max-width: 360px;
        min-width: auto !important;
    }

    .plano-card.recomendado {
        transform: none;
        border: 2px solid #d4af37;
        box-shadow: 0 0 35px rgba(212,175,55,0.4);
    }
}

.plano-card.recomendado .preco {
    font-size: 2.1rem;
}

.plano-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
    flex-grow: 1;
}

.plano-card ul li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.4;
    position: relative;
}

/* ========================= */
/* SEÇÃO BENEFÍCIOS          */
/* ========================= */
.beneficios {
    padding: 100px 40px;
    background-color: #6b2b32;
    color: #f5e6d3;
    text-align: center;
}

/* TÍTULO */
.beneficios h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    margin-bottom: 70px;
}

/* GRID DOS CARDS */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* CARD */
.processo {
    background: rgba(0, 0, 0, 0.22);
    border-radius: 26px;
    padding: 32px 26px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: all 0.45s ease;
}

/* HOVER */
.processo:hover {
    transform: translateY(-14px);
    box-shadow: 0 30px 55px rgba(0,0,0,0.4);
    background: rgba(0, 0, 0, 0.32);
}

/* IMAGEM */
.processo img {
    margin-bottom: 22px;
    transition: transform 0.45s ease;
}

/* IMAGEM NO HOVER */
.processo:hover img {
    transform: scale(1.1);
    width: 56px;
    height: 56px;
    object-fit: contain;
}

/* TÍTULO DO CARD */
.processo h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

/* TEXTO */
.processo p {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 220px;
    opacity: 0.9;
}

/* ========================= */
/* RESPONSIVO BENEFÍCIOS     */
/* ========================= */
@media (max-width: 1024px) {
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .beneficios h2 {
        font-size: 1.8rem;
    }
}

.titulo-planos {
    font-family: 'Playfair Display', serif;
    font-size: 3.1rem;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: 0.4px;
    color: #2a0f14;
}

.subtitulo-planos {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    max-width: 640px;
    margin: 14px auto 0;
    line-height: 1.6;
    opacity: 0.85;
}

.titulo-planos span {
    font-style: italic;
    color: #e6c78c;
}