/* Estilos para a Landing Page da Central School */

:root {
    --azul-escuro: #0A3161;
    --vermelho: #B31942;
    --branco: #FFFFFF;
    --dourado: #D4AF37;
    --cinza-claro: #f8f9fa;
    --cinza-medio: #6c757d;
    --preto: #212529;
}

/* Estilos Gerais */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--preto);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--azul-escuro);
}

.section-title {
    margin-bottom: 3rem;
    text-align: center;
}

.section-subtitle {
    color: var(--cinza-medio);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--vermelho);
    border-color: var(--vermelho);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #9a1636;
    border-color: #9a1636;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--azul-escuro);
    border-color: var(--azul-escuro);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #082548;
    border-color: #082548;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-padding {
    padding: 5rem 0;
}

/* Header */
.navbar {
    background-color: var(--branco);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand img {
    height: auto;
    width: 180px;
}

.navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--azul-escuro);
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--vermelho);
}

.navbar-nav .nav-link.active {
    color: var(--vermelho);
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(10, 49, 97, 0.8), rgba(10, 49, 97, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--branco);
    padding: 8rem 0;
    position: relative;
}

#hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--branco);
}

#hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

#hero .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

/* Metodologia Section */
#metodologia {
    background-color: var(--cinza-claro);
}

.metodologia-card {
    background-color: var(--branco);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metodologia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.metodologia-card h3 {
    color: var(--azul-escuro);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.metodologia-card-icon {
    font-size: 2.5rem;
    color: var(--dourado);
    margin-bottom: 1.5rem;
}

/* Benefícios Section */
.beneficios-item {
    margin-bottom: 2rem;
}

.beneficios-item h3 {
    font-size: 1.3rem;
    color: var(--azul-escuro);
    margin-bottom: 0.5rem;
}

.beneficios-icon {
    color: var(--vermelho);
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.beneficios-col {
    padding: 2rem;
    border-radius: 10px;
}

.beneficios-col.carreira {
    background-color: rgba(10, 49, 97, 0.05);
}

.beneficios-col.viagens {
    background-color: rgba(179, 25, 66, 0.05);
}

/* Planos Section */
.plano-card {
    background-color: var(--branco);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plano-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.plano-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.plano-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 1.5rem;
}

.plano-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.plano-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plano-card ul li:last-child {
    border-bottom: none;
}

.plano-card ul li i {
    color: var(--dourado);
    margin-right: 0.5rem;
}

.plano-card .btn {
    width: 100%;
}

.plano-card.destaque {
    border: 2px solid var(--dourado);
}

.plano-card.destaque::before {
    content: "Mais Popular";
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--dourado);
    color: var(--branco);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: 10px;
}

.frase-impacto {
    font-style: italic;
    font-size: 1.3rem;
    text-align: center;
    margin: 3rem 0;
    color: var(--azul-escuro);
    font-weight: 500;
}

/* Depoimentos Section */
#depoimentos {
    background-color: var(--cinza-claro);
}

.depoimento-card {
    background-color: var(--branco);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.depoimento-texto {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 1rem;
}

.depoimento-texto::before {
    content: """;
font-size: 4rem;
    position: absolute;
    left: -1rem;
    top: -1rem;
    color: var(--dourado);
    opacity: 0.3;
}

.depoimento-autor {
    display: flex;
    align-items: center;
}

.depoimento-autor-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.depoimento-autor-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.depoimento-autor-info p {
    margin-bottom: 0;
    color: var(--cinza-medio);
    font-size: 0.9rem;
}

/* Contato Section */
.form-control {
    padding: 0.75rem 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(10, 49, 97, 0.25);
    border-color: var(--azul-escuro);
}

.form-text {
    font-size: 0.8rem;
    color: var(--cinza-medio);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: var(--branco);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-button i {
    font-size: 2rem;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--branco);
    color: var(--preto);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Footer */
footer {
    background-color: var(--azul-escuro);
    color: var(--branco);
    padding: 4rem 0 2rem;
}

footer h4 {
    color: var(--branco);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

footer p,
footer a {
    color: rgba(255, 255, 255, 0.8);
}

footer a:hover {
    color: var(--dourado);
    text-decoration: none;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer ul li {
    margin-bottom: 0.5rem;
}

.footer-contato i {
    color: var(--dourado);
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.footer-social {
    display: flex;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--dourado);
    color: var(--azul-escuro);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 991.98px) {
    #hero h1 {
        font-size: 2.8rem;
    }

    .navbar-collapse {
        background-color: var(--branco);
        padding: 1rem;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 767.98px) {
    #hero h1 {
        font-size: 2.2rem;
    }

    #hero {
        padding: 6rem 0;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .section-title {
        margin-bottom: 2rem;
    }
}

@media (max-width: 575.98px) {
    #hero h1 {
        font-size: 1.8rem;
    }

    #hero p {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        margin-right: 0 !important;
    }
}