:root {
    --primary-blue: #E0F7FA;
    --accent-blue: #4DD0E1;
    --accent-dark: #00ACC1;
    --soft-green: #E8F5E9;
    --soft-purple: #F3E5F5;
    --soft-orange: #FFF3E0;
    --soft-yellow: #FFFDE7;
    --text-dark: #37474F;
    --text-light: #546E7A;
    --warm-white: #FAFAFA;
    --white: #ffffff;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--warm-white);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Itim', cursive;
    color: var(--text-dark);
}

.highlight {
    color: var(--accent-dark);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-blue);
    z-index: -1;
    opacity: 0.6;
}

.highlight-text {
    color: var(--accent-dark);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-img {
    height: 50px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-dark);
}

.nav-portal {
    padding: 0.5rem 1rem;
    border: 2px solid var(--accent-blue);
    border-radius: 20px;
    color: var(--accent-dark) !important;
}

.nav-portal:hover {
    background: var(--accent-blue);
    color: white !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--primary-blue) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.cta-primary {
    padding: 1rem 2rem;
    background: var(--accent-dark);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 172, 193, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 172, 193, 0.4);
    background: #00838f;
}

.big-cta {
    font-size: 1.3rem;
    padding: 1.2rem 2.5rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-illustration svg {
    width: 400px;
    height: 400px;
    max-width: 100%;
}

/* Intro Section */
.intro-section {
    padding: 5rem 0;
    text-align: center;
    background: white;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Inspiration Section */
.inspiration-section {
    padding: 2rem 0 5rem 0;
    background: white;
}

.inspiration-card {
    display: flex;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    transition: var(--transition);
}

.inspiration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.inspiration-img-wrapper {
    flex: 1;
    min-width: 300px;
}

.inspiration-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.inspiration-content {
    flex: 1.2;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: #fafafa;
}

.quote-mark {
    font-size: 5rem;
    color: var(--accent-dark);
    line-height: 1;
    margin-bottom: -1rem;
    opacity: 0.2;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
    z-index: 1;
}

.quote-author {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: right;
    border-top: 2px solid var(--accent-blue);
    padding-top: 1rem;
    display: inline-block;
    align-self: flex-end;
}

@media (max-width: 768px) {
    .inspiration-card {
        flex-direction: column;
    }

    .inspiration-img-wrapper {
        min-height: 300px;
    }

    .inspiration-content {
        padding: 2rem;
    }

    .quote-text {
        font-size: 1.2rem;
    }
}

/* Courses Section */
.courses-section {
    padding: 5rem 0;
    background: var(--soft-green);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.course-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: var(--primary-blue);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.course-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.course-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Style Section */
.style-section {
    padding: 5rem 0;
    background: white;
}

.style-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.style-text {
    flex: 1;
}

.style-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.style-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.style-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.check-icon {
    font-size: 1.5rem;
}

.style-image {
    flex: 1;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--warm-white) 0%, #fff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--primary-blue);
    opacity: 0.5;
    font-family: serif;
}

.testimonial-card .quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--accent-dark);
    text-align: right;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-social a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: var(--transition);
    text-align: center;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--text-light);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-dark);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e6ed;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(77, 208, 225, 0.1);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.half-width {
    flex: 1;
}

.form-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    transition: var(--transition);
    z-index: 1000;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .style-content {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }
}