/* CSS Custom Properties */
:root {
    --primary-purple: #888CC4;
    --primary-blue: #4A90A4;
    --primary-green: #7FB685;
    --accent-yellow: #FDDD98;
    --light-purple: #E8E9F3;
    --light-blue: #E8F4F8;
    --light-green: #F0F7F0;
    --dark-text: #2C3E50;
    --medium-text: #5A6C7D;
    --light-gray: #F5F5F5;
    --border-color: #E0E0E0;
    --white: #FFFFFF;
    --success-green: #52C41A;
    --error-red: #FF4D4F;
    --whatsapp-green: #25D366;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --nav-height: 70px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Sticky Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-text);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.975rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-purple);
    transition: width 0.3s ease;
}

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

.nav-btn {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.975rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    margin-top: var(--nav-height);
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-blue) 100%);
    padding: 60px 0 40px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--medium-text);
    margin-bottom: 28px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn {
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--whatsapp-green);
    color: var(--white);
}

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

.whatsapp-icon {
    font-size: 1.25rem;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.trust-item strong {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.trust-item span {
    font-size: 0.875rem;
    color: var(--medium-text);
}

/* Section Styles */
.section {
    padding: 50px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 16px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--medium-text);
    max-width: 700px;
    margin: 0 auto 32px;
    padding-top: 16px;
}

/* Credentials Section */
.credentials {
    background-color: var(--white);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.credential-card {
    background-color: var(--light-purple);
    padding: 28px 24px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.credential-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-purple);
}

.credential-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.credential-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.credential-card p {
    color: var(--medium-text);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* About Section */
.about {
    background-color: var(--light-gray);
}

.about-content-with-photo {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
    max-width: 1100px;
    margin: 32px auto 0;
}

.about-photo-container {
    position: relative;
}

.about-photo {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    transition: var(--transition);
}

.about-photo:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.about-text {
    text-align: left;
}

.about-text p {
    font-size: 1rem;
    color: var(--medium-text);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-specialties {
    margin-top: 24px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-purple);
}

.about-specialties h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.about-specialties ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.about-specialties li {
    color: var(--medium-text);
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.about-specialties li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.125rem;
}

/* Services Section */
.services {
    background-color: var(--white);
}

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

.service-card {
    background-color: var(--white);
    padding: 28px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid var(--border-color);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-purple), var(--primary-blue));
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-purple);
}

.service-card:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--medium-text);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.975rem;
}

.learn-more {
    display: inline-block;
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.service-card:hover .learn-more {
    color: var(--primary-blue);
    transform: translateX(6px);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-blue) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 24px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.stars {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: #FFB800;
}

.testimonial-text {
    color: var(--medium-text);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 12px;
    border-top: 2px solid var(--light-gray);
}

.testimonial-author strong {
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--medium-text);
    font-size: 0.8rem;
}

/* FAQ Section */
.faq {
    background-color: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 32px auto 0;
}

.faq-item {
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
}

.faq-question:hover {
    background-color: var(--light-purple);
    border-color: var(--primary-purple);
}

.faq-question[aria-expanded="true"] {
    background-color: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: var(--light-gray);
}

.faq-answer.active {
    max-height: 500px;
    padding: 18px 20px;
}

.faq-answer p {
    color: var(--medium-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    background-color: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 32px auto 0;
}

.contact-card {
    background-color: var(--white);
    padding: 24px 20px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    overflow: hidden;
    min-width: 0;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-purple);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.contact-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.contact-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: block;
    margin-bottom: 8px;
    overflow-wrap: anywhere;
    word-break: break-all;
    max-width: 100%;
}

.contact-link:hover {
    color: var(--primary-blue);
}

.contact-whatsapp {
    display: inline-block;
    background-color: var(--whatsapp-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.975rem;
    margin-top: 12px;
    transition: var(--transition);
}

.contact-whatsapp:hover {
    background-color: #20BA55;
    transform: translateY(-2px);
}

.contact-text {
    color: var(--medium-text);
    line-height: 1.8;
    font-size: 1rem;
}

.contact-note {
    margin-top: 12px;
    font-size: 0.875rem;
    color: var(--medium-text);
    font-style: italic;
}

/* Register Section */
.register {
    background-color: var(--white);
}

.register-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--medium-text);
    max-width: 700px;
    margin: 0 auto 32px;
    padding-top: 16px;
}

.interest-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--light-gray);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
    font-size: 1rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.975rem;
    font-family: inherit;
    color: var(--dark-text);
    transition: var(--transition);
    background-color: var(--white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(136, 140, 196, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.error-message {
    display: block;
    color: var(--error-red);
    font-size: 0.875rem;
    margin-top: 8px;
    min-height: 20px;
}

.submit-btn {
    width: 100%;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loader {
    display: inline-block;
}

.success-message {
    max-width: 700px;
    margin: 48px auto 0;
    padding: 48px;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
    border-radius: 16px;
    text-align: center;
    animation: fadeInUp 0.5s ease;
    box-shadow: var(--shadow-md);
}

.success-icon {
    width: 72px;
    height: 72px;
    background-color: var(--success-green);
    color: var(--white);
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-sm);
}

.success-message h3 {
    font-size: 2rem;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.success-message p {
    font-size: 1.125rem;
    color: var(--medium-text);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 28px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.footer-section p {
    opacity: 0.9;
    margin-bottom: 8px;
    line-height: 1.7;
}

.footer-location {
    color: var(--primary-purple);
    font-weight: 600;
}

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

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-purple);
}

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

.footer-bottom p {
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-note {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}


/* Service Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    max-width: 750px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 48px;
    margin: 24px;
    z-index: 1001;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--medium-text);
    cursor: pointer;
    transition: var(--transition);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background-color: var(--light-gray);
    color: var(--dark-text);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 24px;
    padding-right: 44px;
}

.modal-body {
    color: var(--medium-text);
    line-height: 1.8;
}

.modal-body h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-top: 28px;
    margin-bottom: 16px;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 20px;
    font-size: 1.063rem;
}

.modal-body ul {
    margin: 20px 0;
    padding-left: 28px;
}

.modal-body li {
    margin-bottom: 14px;
    line-height: 1.7;
}

.modal-body a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.modal-body a:hover {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

.modal-body a:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .about-content-with-photo {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-photo {
        max-width: 300px;
        margin: 0 auto;
    }

    .about-text {
        text-align: center;
    }

    .about-specialties ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 60px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link,
    .nav-btn {
        display: block;
        padding: 16px 24px;
        border-radius: 0;
    }

    .nav-link::after {
        display: none;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.063rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .hero-trust {
        gap: 40px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .services-grid,
    .credentials-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .interest-form {
        padding: 32px 24px;
    }

    .modal-content {
        padding: 32px 24px;
        width: 95%;
    }

    .modal-title {
        font-size: 1.625rem;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .trust-item strong {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .modal-content {
        padding: 24px 20px;
    }
}
