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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6; color: #333;
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    min-height: 100vh;
}

.container { max-width: 1400px; margin: 0 auto; padding: 20px; }

nav {
    background: white; border-radius: 15px; padding: 15px 30px;
    margin-bottom: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
}

.nav-logo { display: flex; align-items: center; gap: 15px; }
.nav-logo img { width: 80px; height: auto; }
.nav-logo span { font-size: 1.2em; font-weight: 700; color: #0066cc; }

.nav-links { display: flex; gap: 25px; list-style: none; }
.nav-links a {
    color: #333; text-decoration: none; font-weight: 600;
    transition: color 0.3s; padding: 8px 15px; border-radius: 5px;
}
.nav-links a:hover { color: #0066cc; background: #f8f9fa; }
.nav-links a.active {
    color: white;
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
}

.hero-banner {
    background: white; border-radius: 15px; padding: 30px;
    margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center; position: relative; overflow: hidden;
}

.hero-banner::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 5px; background: linear-gradient(90deg, #0066cc, #004c99);
}

.stats-container {
    display: flex; justify-content: center; gap: 50px;
    margin: 20px 0; flex-wrap: wrap;
}

.stat-box { text-align: center; }
.stat-number { font-size: 3em; font-weight: 700; color: #0066cc; line-height: 1; }
.stat-label { color: #7f8c8d; font-size: 1em; margin-top: 5px; }

header {
    background: white; border-radius: 15px; padding: 40px;
    margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.header-content {
    display: flex; align-items: center; gap: 30px; flex-wrap: wrap;
}

.profile-image-container { flex-shrink: 0; }
.profile-image {
    width: 180px; height: 180px; border-radius: 50%;
    object-fit: cover; border: 5px solid #0066cc;
    box-shadow: 0 5px 20px rgba(0,102,204,0.3);
}

.profile-section { flex: 1; min-width: 300px; }

h1 { color: #2c3e50; font-size: 2.5em; margin-bottom: 10px; }

.subtitle { color: #7f8c8d; font-size: 1.2em; margin-bottom: 20px; }

.credentials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; }

.badge {
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    color: white; padding: 8px 15px; border-radius: 20px;
    font-size: 0.85em; font-weight: 600;
}

.testimonials-section {
    background: white; border-radius: 15px; padding: 40px 30px;
    margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden; position: relative;
}

.testimonials-section h2 {
    color: #2c3e50; text-align: center;
    margin-bottom: 30px; font-size: 2em;
}

.carousel-container { 
    position: relative; overflow: hidden; 
    padding: 20px 0;
    margin-bottom: 20px;
}

.carousel-track {
    display: flex; gap: 30px;
    transition: transform 0.5s ease;
}

/* Botões de navegação */
.carousel-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0, 102, 204, 0.9); color: white;
    border: none; width: 50px; height: 50px; border-radius: 50%;
    cursor: pointer; font-size: 1.5em;
    display: flex; align-items: center; justify-content: center;
    z-index: 10; transition: all 0.3s;
}

.carousel-nav:hover {
    background: #004c99;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev { left: 10px; }
.carousel-nav.next { right: 10px; }

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.testimonial-card {
    min-width: 450px; max-width: 450px; height: 400px;
    display: flex; flex-direction: column; 
    background: #f8f9fa; border-radius: 15px;
    padding: 25px; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #0066cc;
    flex-shrink: 0;
}

.testimonial-header {
    display: flex; align-items: center; gap: 15px; margin-bottom: 15px;
}

.testimonial-avatar {
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.5em; font-weight: 700;
}

.testimonial-info h4 { color: #2c3e50; margin-bottom: 3px; }
.testimonial-role { color: #7f8c8d; font-size: 0.9em; }

.nivel-badge {
    display: inline-block; background: #0066cc; color: white;
    padding: 3px 10px; border-radius: 10px;
    font-size: 0.75em; margin-left: 5px;
}

.testimonial-text { color: #555; font-style: italic; line-height: 1.6; }
.stars { color: #ffc107; font-size: 1.2em; margin-bottom: 10px; }

.main-content {
    display: grid; grid-template-columns: 1fr 2fr;
    gap: 30px; margin-bottom: 30px;
}

.info-card {
    background: white; border-radius: 15px; padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card h2 {
    color: #2c3e50; margin-bottom: 20px; font-size: 1.8em;
    border-bottom: 3px solid #0066cc; padding-bottom: 10px;
}

.info-card h3 {
    color: #0066cc; margin-top: 20px;
    margin-bottom: 10px; font-size: 1.3em;
}

.info-card ul { margin-left: 20px; margin-bottom: 15px; }
.info-card li { margin-bottom: 10px; color: #555; }

.highlight-box {
    background: #f8f9fa; border-left: 4px solid #0066cc;
    padding: 20px; margin: 20px 0; border-radius: 5px;
}

.highlight-box strong { color: #0066cc; }

.calendar-section {
    background: white; border-radius: 15px; padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.calendar-section h2 {
    color: #2c3e50; margin-bottom: 20px;
    text-align: center; font-size: 1.8em;
}

.calendar-iframe-container {
    border-radius: 10px; overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

footer {
    background: white; border-radius: 15px; padding: 20px;
    text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 30px;
}

footer p { color: #7f8c8d; margin-bottom: 10px; }

.social-links {
    display: flex; justify-content: center; gap: 20px;
    margin-top: 15px; flex-wrap: wrap;
}

.social-links a {
    color: #0066cc; text-decoration: none;
    font-weight: 600; transition: color 0.3s;
}

.social-links a:hover { color: #004c99; }

.price-info {
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    color: white; padding: 25px; border-radius: 10px;
    text-align: center; margin: 20px 0;
}

.price-info .price { font-size: 2.5em; font-weight: bold; margin: 10px 0; }
.price-example { font-size: 1em; margin-top: 10px; opacity: 0.9; }

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px; margin-top: 20px;
}

.service-card {
    background: #f8f9fa; border-radius: 12px; padding: 20px;
    border-left: 4px solid #0066cc;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,102,204,0.2);
}

.service-card h4 {
    color: #0066cc; margin-bottom: 12px; font-size: 1.1em;
    display: flex; align-items: center; gap: 8px;
}

.service-card ul { list-style: none; margin: 0; padding: 0; }

.service-card li {
    padding: 6px 0; color: #555;
    display: flex; align-items: flex-start; gap: 8px;
}

.service-card li::before {
    content: '✓'; color: #0066cc;
    font-weight: bold; flex-shrink: 0;
}

/* RESPONSIVO */
@media (max-width: 968px) {
    .main-content { grid-template-columns: 1fr; }
    .testimonial-card { min-width: 350px; }
    .nav-links { width: 100%; justify-content: center; margin-top: 10px; }
    .profile-image { width: 150px; height: 150px; }
}

@media (max-width: 480px) {
    .testimonial-card { min-width: 280px; }
    .profile-image { width: 120px; height: 120px; }
}
