* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: linear-gradient(to bottom, #fef7f0, #ffffff);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section#benefits {
    margin-bottom: -32px;
    padding-bottom: 50px;
}

.hero-header img {
    width: auto;
    min-width: 210px ! IMPORTANT;
}

/* Color variables */
:root {
    --rose: #E91E63;
    --dark-rose: #C2185B;
    --cream: #fef7f0;
    --pink: #fce4ec;
    --charcoal: #2c2c2c;
    --gold: #FFD700;
}

/* Typography */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(44, 44, 44, 0.8);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.text-accent {
    color: var(--rose);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-direction: column;
    z-index: 0;
}

/* Pseudo-elemento para o fundo com blur */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(./imagens/aulaexperimental6.webp) center/cover no-repeat;
    filter: blur(5px);
    z-index: -1;
    background-attachment: fixed;
}

/* Camada escura por cima do blur */
.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-header {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-header img {

    width: auto;
}

.hero-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    border-radius: 2rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
  
}

.hero-details {
    margin-bottom: 2rem;
}

.hero-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 1000px;
    margin: 0 auto 1.5rem;
    font-weight: 500;
}

.hero-subtext {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Intro Section */
.intro-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white, var(--pink));
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}



.intro-text {
    font-size: 1.125rem;
    color: rgba(44, 44, 44, 0.8);
    line-height: 1.8;
}

.intro-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.intro-item .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--rose);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.intro-highlight {
    background: linear-gradient(to right, var(--rose), var(--dark-rose));
    border-radius: 1rem;
    padding: 1.5rem;
    color: white;
}

.highlight-text {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

/* Imagem integrada na seção de introdução */
.intro-image {
    margin-top: 2rem;
    text-align: start;
}

.intro-image .section-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.intro-image .section-image:hover {
    transform: scale(1.05);
}

.image-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(44, 44, 44, 0.7);
    font-style: italic;
}

.section-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    gap: 2rem;
}

.divider-line {
    width: 4rem;
    height: 0.25rem;
    background: linear-gradient(to right, transparent, var(--gold));
}

.divider-line.left {
    background: linear-gradient(to right, transparent, var(--gold));
}

.divider-line.right {
    background: linear-gradient(to left, transparent, var(--gold));
}

.divider-icon {
    width: 2rem;
    height: 2rem;
    background: var(--rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-icon i {
    color: white;
    font-size: 0.875rem;
}

/* Form Section */
.form-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-group {
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 48%;
}

.form-group:nth-child(odd) {
    margin-right: 2%;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 3rem;
    border: 2px solid #e5e5e5;
    border-radius: 0.5rem;
    padding: 0 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.submit-button {
    width: 100%;
    background: linear-gradient(to right, var(--rose), var(--dark-rose));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(to bottom, white, var(--cream));
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.benefits-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.benefits-row--top .benefits-card {
    max-width: 300px;
}

.benefits-card__icon i {
    font-size: 2.5rem;
    color: rgb(194, 24, 91);
    margin-bottom: 1rem;
}

.benefits-card {
    background-color: rgb(255, 255, 255);
    text-align: center;
    box-shadow: rgb(194, 24, 91) 1px 0px 40px -21px;
    border-radius: 16px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.5);
    border-image: initial;
    transition: 0.25s ease-in-out;
    max-width: 310px;
    overflow: hidden;
}

.benefits-card:hover {
    transform: translateY(-8px);
    box-shadow: rgb(194, 24, 91) 5px 6px 75px -21px;
}

.benefits-card__title {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgb(51, 51, 51);
        margin: 15px 0px;
}

h3#cardespeciall {
    margin-top: 5px;
}

.benefits-card__text {
    color: rgba(44, 44, 44, 0.7);
    line-height: 1.6;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    padding: 5px;
}

/* Imagens nos cards de benefícios */


.benefit-image {
    width: 100%  !important;;
    height: 200px !important;
    object-fit: cover  !important;;
    border-radius: 0.5rem  !important;;
    transition: transform 0.3s ease  !important;;
}

.benefit-image:hover {
    transform: scale(1.05);
}

/* Seção de imagens adicionais dos benefícios */
.benefits-images {
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.benefits-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem ! IMPORTANT;
    margin: 0px 50px;

}

.benefits-card:hover {
    transform: scale(1.02);
}



.benefit-image-item {
    text-align: center;
}

.benefit-image-item .section-image {
    width: 100%;
    height: 20vw;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-image-item .section-image:hover {
    transform: scale(1.05);
}

.section-header {
    position: relative;
    z-index: 10;
    margin-bottom: 4rem;
}

.cta-section {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: 3rem;
}

.cta-card {
    background: linear-gradient(rgba(233, 30, 99, 0.9), rgba(194, 24, 91, 0.9)), url('https://images.unsplash.com/photo-1518834107812-67b0b7c58434?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 2rem;
    padding: 40px 20px;
    color: white;
    overflow: hidden;
    position: relative;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(to right, var(--rose), var(--dark-rose));
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.4);
}

.cta-card .cta-button {
    background: white;
    color: var(--rose);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-card .cta-button:hover {
    background: var(--cream);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--cream), var(--pink));
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1518611012118-696072aa579a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.testimonials-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

.stars {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 0.25rem;
}

.stars i {
    color: var(--gold);
    font-size: 1.25rem;
}

.quote {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.quote-icon {
    color: var(--rose);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.quote-text {
    color: var(--charcoal);
    font-size: 1.125rem;
    line-height: 1.6;
    font-style: italic;
}

.author {
    text-align: center;
    margin-bottom: 1rem;
}

.author-name {
    font-weight: 700;
    color: var(--charcoal);
    font-size: 1.125rem;
}

.author-relation {
    color: rgba(44, 44, 44, 0.7);
    font-size: 0.875rem;
}

/* Imagem no depoimento */
.testimonial-image {
    margin-top: 1.5rem;
    text-align: center;
}

.testimonial-image .section-image {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-image .section-image:hover {
    transform: scale(1.05);
}

/* Authority Section */
.authority-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--pink), white);
}

.authority-badge {
    background: #fff0;
    border-radius: 2rem;
    padding: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    margin-bottom: 1.5rem;
}

.badge-icon i {
    width: 6rem;
    height: 6rem;
    background: #2c2c2c;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.badge-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.badge-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: #2c2c2c;
}

.badge-director {
    color: #2c2c2c;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 40px;
}

/* Imagem principal da seção de autoridade */
.authority-main-image {
    margin: 2rem 0;
    text-align: center;
    width: 50%;
}

.authority-image {
    width: 85%;
    max-width: 600px;
    height: auto;
    border-radius: 1rem !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.authority-image:hover {
    transform: scale(1.02);
}

.achievements-grid {
    display: flex;
    gap: 2rem;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.achievement-card {
    background: white;
    border-radius: 1rem;
    padding: 10px 30px;
    text-align: center;
    border: 2px solid var(--pink);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 80%;
}

.achievement-card:hover {
    border-color: var(--rose);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    object-fit: contain;
}

.achievement-content {
    margin-bottom: 1rem;
}

.achievement-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.4;
}

.achievement-description {
    color: rgba(44, 44, 44, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.lightbox-close:hover {
    color: var(--rose);
}

.lightbox img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 1rem;
}

.lightbox-caption {
    color: white;
    padding: 1rem 0;
}

.lightbox-caption h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.lightbox-caption p {
    font-size: 1rem;
    opacity: 0.8;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    img.footer-logo-img {
    width: 70% !IMPORTANT;
}
    
    div#fotomaiscards {
    display: flex ! IMPORTANT;
    align-items: center;
    justify-content: center;
    flex-direction: column ! IMPORTANT;
}

    .authority-main-image {
    width: 100% !IMPORTANT;
}
.achievements-grid{
    width: 100% !IMPORTANT;;
}
.achievement-card{
        width: 90% !IMPORTANT;;

}
    
    .form-group {
        width: 100%;
        margin-right: 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-row {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-card {
        max-width: 100%;
        width: 100%;
    }
    
    .benefits-image-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .badge-title {
        font-size: 2rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-image .section-image {
        max-width: 100%;
        height: 250px;
    }
    
    .authority-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-card {
        padding: 1.5rem;
    }
    
    
    .contact-form {
        padding: 1.5rem;
    }
    
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .authority-badge {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem ! IMPORTANT;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .benefits-card__title{
        margin-top:10px;
    }
    
    .benefit-image {
        height: 120px;
    }
    
    .benefit-image-item .section-image {
        height: 200px;
    }
    
    .testimonial-image .section-image {
        height: 150px;
    }
}

.card-image {
  display: flex;
  justify-content: center;
  align-items: center; /* Se quiser também centralizar verticalmente */
}


/* Footer */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 53px;
    margin-bottom: 2rem;
}

    img.footer-logo-img {
    width: 100%;
}

.paradotter{
    font-size: 18px
}

.footer-logo h3 {
    color: var(--rose);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.footer-contact h4,
.footer-social h4 {
    color: var(--gold);
    margin-bottom: 1rem;
        font-size: 25px;
        font-weight: bold
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 29px;
    transition: all 0.3s ease;
}

.social-link.whatsapp {
    background: #25D366;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.tiktok {
    background: #000000;
}

.social-link:hover {
    transform: scale(1.1);
}

button.info-button {
    background: #e91e63;
    font-family: 'Montserrat';
    font-size: 16px;
    padding: 10px 25px;
    color: #fff;
    font-weight: 700;
    border: 1px solid #e91e63;
    border-radius: 30px;
    transition: all 0.3s ease; /* suave transição */
}

button.info-button:hover {
    background: #fff;
    color: #e91e63;
    border: 1px solid #e91e63;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}



/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--rose);
    color: white;
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--dark-rose);
    transform: scale(1.1);
}

.whatsapp-button {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(45deg, #25D366, #1DA851);
    transition: box-shadow 0.3s ease-in-out;
}

.whatsapp-button a {
    color: white;
    font-size: 45px;
    text-decoration: none;
    display: block;
    padding: 10px 20px;
    z-index: 1;
    position: relative;
}

.whatsapp-button:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Shine effect */
.whatsapp-button::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 10%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(0deg);
    animation: shineDiagonal 3s infinite;
    z-index: 0;
}

@keyframes shineDiagonal {
    0% {
        transform: translate(-100%, -100%) rotate(25deg);
    }
    100% {
        transform: translate(100%, 100%) rotate(25deg);
    }
}

