/* Estilos Gerais */
:root {
    --primary-color: #0066cc;
    --secondary-color: #00a0e3;
    --accent-color: #00e676;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --text-light: #666666;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-full {
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 15px auto;
    border-radius: 2px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--dark-color);
}

.logo span {
    color: var(--primary-color);
}

.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-destaque {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: var(--border-radius);
}

.btn-destaque:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-destaque::after {
    display: none;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1606811971618-4486d14f3f99?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding-right: 30px;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.hero-video {
    flex: 1;
}

.video-container {
    background-color: var(--dark-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

/* Sobre Section */
.sobre {
    background-color: white;
}

.sobre-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sobre-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sobre-text p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.sobre-highlights {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.highlight-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-10px);
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.highlight-item p {
    color: var(--text-light);
}

/* Professor Section */
.professor {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
    position: relative;
}

.professor-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.professor-foto {
    flex: 0 0 300px;
    position: relative;
}

.professor-foto img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 5px solid white;
}

.professor-social {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background-color: white;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: var(--box-shadow);
}

.professor-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.professor-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.professor-info {
    flex: 1;
}

.professor-info h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.professor-titulo {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.professor-credenciais {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.credencial-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.credencial-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.credencial-item p {
    margin-bottom: 0;
    color: var(--text-light);
}

.professor-descricao {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

@media (max-width: 992px) {
    .professor-content {
        flex-direction: column;
        text-align: center;
    }
    
    .professor-foto {
        margin: 0 auto 40px;
    }
    
    .credencial-item {
        justify-content: center;
    }
}

/* Benefícios Section */
.beneficios {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: -15px;
    margin-bottom: 40px;
}

.beneficios-intro {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.beneficios-intro-text {
    flex: 1;
}

.beneficios-intro-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.beneficios-intro-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.beneficios-intro-image {
    flex: 1;
    position: relative;
}

.beneficios-intro-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.beneficios-destaque {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 200px;
}

.destaque-numero {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.destaque-texto {
    font-size: 0.9rem;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.beneficio-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.beneficio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.beneficio-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.beneficio-card p {
    color: var(--text-light);
}

.beneficio-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 102, 204, 0.95);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 30px;
}

.beneficio-card:hover .beneficio-hover {
    opacity: 1;
}

.beneficio-hover ul {
    list-style-type: none;
}

.beneficio-hover ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.beneficio-hover ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.beneficios-cta {
    margin-top: 60px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-content {
    flex: 2;
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.beneficios-cta .btn-primary {
    flex: 1;
    text-align: center;
    padding: 15px 25px;
    font-size: 1.1rem;
}

/* Depoimentos Section */
.depoimentos {
    background-color: white;
    position: relative;
}

.depoimentos-destaque {
    margin-bottom: 50px;
}

.depoimentos-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    color: white;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-numero {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-texto {
    font-size: 1.1rem;
}

.depoimentos-slider {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
    margin-bottom: 30px;
    padding: 20px 0;
}

.depoimento-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.depoimento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.depoimento-content {
    padding: 30px;
    position: relative;
}

.depoimento-quote {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.5rem;
    color: rgba(0, 102, 204, 0.2);
}

.stars {
    margin-bottom: 15px;
    text-align: right;
}

.stars i {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 3px;
}

.depoimento-content > p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.autor-foto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.autor-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.autor-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

.depoimentos-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.depoimentos-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background-color: var(--primary-color);
}

.depoimentos-video {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.video-wrapper {
    flex: 1;
    position: relative;
    padding-top: 30%; /* 16:9 Aspect Ratio */
    background-color: var(--dark-color);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.video-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.video-info {
    flex: 1;
    padding: 30px;
}

.video-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.video-info p {
    color: var(--text-light);
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .depoimentos-video {
        flex-direction: column;
    }
    
    .video-wrapper {
        width: 100%;
        padding-top: 56.25%; /* 16:9 Aspect Ratio */
    }
    
    .video-info {
        width: 100%;
        text-align: center;
    }
}
}

.depoimentos-slider {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
    margin-bottom: 30px;
}

.depoimento-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.depoimento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.depoimento-content {
    padding: 30px;
}

.stars {
    margin-bottom: 15px;
}

.stars i {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 3px;
}

.depoimento-content > p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.autor-foto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.autor-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.autor-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

.depoimentos-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Contato Section */
.contato {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contato-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.contato-info {
    flex: 1;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contato-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contato-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contato-destaque {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contato-destaque i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.contato-destaque h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contato-destaque p {
    color: var(--text-light);
    margin-bottom: 0;
}

.contato-form {
    flex: 1;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check input {
    width: auto;
    margin-right: 10px;
}

.form-check label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.whatsapp-button a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.whatsapp-pulse {
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #25d366;
    z-index: -1;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-50%) scale(2.5);
        opacity: 0;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-social {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.privacy-policy {
    margin-bottom: 30px;
}

.privacy-policy h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.privacy-policy p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contato-wrapper {
        flex-direction: column;
    }
    
    .depoimentos-slider {
        overflow-x: auto;
        padding-bottom: 20px;
    }
    
    .beneficios-intro {
        flex-direction: column;
    }
    
    .beneficios-intro-image {
        margin-top: 30px;
    }
    
    .beneficios-destaque {
        right: 0;
    }
    
    .beneficios-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    
    .professor-content {
        flex-direction: column;
        text-align: center;
    }
    
    .professor-foto {
        margin: 0 auto 40px;
    }
    
    .credencial-item {
        justify-content: center;
    }
    
    .professor-cta {
        margin-top: 20px;
    }
    
    .depoimentos-video {
        flex-direction: column;
    }
    
    .video-wrapper {
        width: 100%;
        padding-top: 56.25%; /* 16:9 Aspect Ratio */
    }
    
    .video-info {
        width: 100%;
        text-align: center;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .sobre-highlights {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .nav-menu {
        display: none;
    }
    
    .contato-form, .contato-info {
        padding: 20px;
    }
    
    .form-header {
        text-align: center;
    }
    
    .form-icon {
        margin: 0 auto 15px;
    }
    
    .depoimentos-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .privacy-content h4 {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .whatsapp-button span {
        display: none;
    }
    
    .whatsapp-button a {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .whatsapp-button i {
        margin-right: 0;
        font-size: 2rem;
    }
    
    .whatsapp-pulse {
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    @keyframes pulse {
        0% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }
        100% {
            transform: translate(-50%, -50%) scale(2.5);
            opacity: 0;
        }
    }
    
    .depoimento-card {
        min-width: 280px;
    }
    
    .contato-destaque {
        flex-direction: column;
        text-align: center;
    }
    
    .contato-destaque i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .form-footer {
        text-align: center;
    }
}
