* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-primary: #e39610;
    --green-dark: #5A9145;
    --orange-primary: #76a94f;
    --orange-light: #9e8159;
    --light-bg: #E8F5E3;
    --dark-text: #2C3E2C;
    --gray-text: #666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}

.region {
    font-family: "region", Sans-serif;
    font-size: 70px;
    font-weight: 600;
    color: #F4AA25;
}


header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--green-primary);
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 1.5rem;
    justify-content: center;
}

nav a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--green-primary);
}

.cta-button {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}


.hero {
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    width: 100%;
}

.hero-content h1 {
    font-size: 2rem;
    color: var(--orange-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1.1;
}

.hero-content h2 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-content p {
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: justify;
    font-size: 1rem;
}

.hero-image {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 600px;
}

.image-slider {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 8px solid white;
}

.slider-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.green-button {
    background: var(--green-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    text-transform: uppercase;
    text-align: center;
}

.green-button:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(122, 184, 94, 0.4);
}


.video-section {
    background: #5A9145;
    padding: 2rem 1rem;
}

.video-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.video-placeholder {
    background: #000;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.video-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section {
    background: linear-gradient(135deg, #ccd0b1 0%, #daebd5 100%);
    padding: 4rem 1rem;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(118, 169, 79, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(227, 150, 16, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.2rem;
    color: var(--green-primary);
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--green-primary), var(--orange-primary));
    border-radius: 2px;
}


.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-text);
}

.intro-text strong {
    color: var(--green-primary);
    font-weight: 700;
}


.stats-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--green-primary);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--green-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray-text);
    font-weight: 600;
}


.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 5px solid var(--green-primary);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--green-primary));
    transition: width 0.4s ease;
}

.benefit-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: var(--dark-text);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.benefit-card p {
    color: var(--gray-text);
    line-height: 1.7;
    font-size: 1rem;
}


.cta-container {
    text-align: center;
    background: linear-gradient(135deg, var(--green-dark));
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    margin: 0 1rem;
}

.cta-container h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-container .green-button {
    background: white;
    color: var(--green-primary);
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    transition: all 0.3s ease;
}

.cta-container .green-button:hover {
    background: var(--orange-primary);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services-section {
    background:white;
    padding: 3rem 1rem;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(122, 184, 94, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(245, 166, 35, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-container {
    width: 100%;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-title {
    text-align: center;
    margin-bottom: 2rem;
}

.services-title h3 {
    color: var(--gray-text);
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
}

.services-title h2 {
    color: var(--green-primary);
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: bold;
}

.services-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    padding: 1rem;
    margin: 0 auto;
}

.service-card {
    width: 100%;
    max-width: 600px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.4s ease;
    height: 350px;
    margin: 0 auto;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.service-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(122, 184, 94, 0.98) 0%, rgba(122, 184, 94, 0.85) 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
    background: linear-gradient(to top, rgba(90, 145, 69, 0.98) 0%, rgba(90, 145, 69, 0.85) 100%);
}

.service-overlay h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.service-overlay p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
}

.service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--green-primary);
    color: white;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.play-button::after {
    content: '▶️';
    color: var(--green-primary);
    font-size: 1.3rem;
    margin-left: 3px;
}

.service-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--green-primary);
}

.service-card:hover .play-button::after {
    color: white;
}



.contact-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecef 100%);
    padding: 3rem 1rem;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(63, 163, 77, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(248, 155, 41, 0.05) 0%, transparent 50%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.form-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 3px solid var(--green-primary);
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--green-primary) 0%, var(--yellow-primary) 50%, var(--green-primary) 100%);
}

.form-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 50px;
    opacity: 0.1;
}

.form-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.form-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.2;
}

.form-card h2 span {
    color: var(--green-primary);
    display: inline-block;
    position: relative;
}

.form-card h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--yellow-primary);
    border-radius: 2px;
}

.contact-form {
    position: relative;
}

.contact-form input {
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 1rem;
    background: white;
    color: var(--dark-text);
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:hover {
    border-color: var(--green-primary);
    background: #f8fdf9;
}

.contact-form input:focus {
    outline: none;
    border-color: var(--green-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(63, 163, 77, 0.1);
    transform: translateY(-2px);
}

.contact-form input::placeholder {
    color: #a0aec0;
}

.submit-button {
    width: 100%;
    padding: 1.3rem;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(63, 163, 77, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-button:hover::before {
    width: 300px;
    height: 300px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(63, 163, 77, 0.4);
}

.submit-button:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(63, 163, 77, 0.3);
}


.evaluation-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9f4 100%);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 3px solid var(--orange-primary);
}

.evaluation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--orange-primary) 0%, var(--yellow-primary) 50%, var(--orange-primary) 100%);
}

.evaluation-card h3 {
    color: var(--orange-primary);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.evaluation-card h2 {
    color: var(--green-primary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.evaluation-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 16/10;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    position: relative;
}

.evaluation-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(63, 163, 77, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.evaluation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.evaluation-image:hover img {
    transform: scale(1.05);
}




.faq-section {
    padding: 100px 20px; 
    background-color: #f7f9fb; 
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #1e3a52;
    font-size: 2.8rem;
    font-weight: 800; 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-container {
    max-width: 850px; 
    margin: 0 auto;
}

.faq-list {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
}

.faq-item {
    background-color: #ffffff;
    border-bottom: 1px solid #e3e8ee; 
    margin-bottom: 0; 
    transition: background-color 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none; 
}

.faq-question {
    width: 100%;
    padding: 25px 35px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem; 
    font-weight: 700;
    color: #2c3e50; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
}

.faq-question:hover {
    background-color: #f0f4f8; 
}

.faq-question.active {
    background-color: var(--green-primary, #4CAF50);
    color: #ffffff; 
}

.faq-question .icon {
    font-size: 1.8rem;
    transition: transform 0.3s;
    color: var(--green-primary, #4CAF50); 
    font-weight: normal;
}

.faq-question.active .icon {
    transform: rotate(180deg);
    color: #ffffff; 
}

.faq-answer {
    max-height: 0; 
    padding: 0 35px; 
    overflow: hidden;
    background-color: #ffffff;
    transition: max-height 0.6s ease-in-out, padding 0.6s ease-in-out;
}

.faq-answer.active {
    max-height: 500px; 
    padding: 15px 35px 30px;
    border-left: 4px solid var(--green-primary, #4CAF50); 
}

.faq-answer p {
    margin: 0;
    line-height: 1.7; 
    color: #5a7184;
    font-size: 1.05rem;
}

/* Footer Styles */
.footer-section {
    background: linear-gradient(135deg, var(--dark-text), var(--green-dark));
    color: white;
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-about h3,
.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    color: var(--green-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a,
.footer-contact a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-legal a:hover,
.footer-contact a:hover {
    color: var(--green-primary);
}

.footer-cta {
    display: inline-block;
    background: var(--green-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 1rem;
    transition: transform 0.3s;
}

.footer-cta:hover {
    transform: translateY(-3px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.footer-social a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-logo {
    width: 100px;
    margin-bottom: 1rem;
}


html {
    scroll-behavior: smooth;
}


@media (min-width: 768px) {
    .header-container {
        flex-wrap: nowrap;
        padding: 0 2rem;
    }

    .logo img {
        max-width: 350px;
    }

    .hero {
        padding: 3rem 2rem;
    }

    .hero-container {
        flex-direction: row;
        gap: 4rem;
    }

    .hero-content {
        flex: 1;
    }

    .hero-image {
        flex: 1;
        max-width: none;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .image-slider {
        height: 400px;
    }

    .green-button {
        padding: 1.2rem 2.5rem;
    }

  
    .about-section {
        padding: 5rem 2rem;
    }

    .section-title {
        font-size: 2.8rem;
        margin-bottom: 2rem;
    }

    .intro-text p {
        font-size: 1.2rem;
    }

    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .cta-container {
        padding: 4rem 3rem;
        margin: 0 2rem;
    }

    .cta-container h3 {
        font-size: 1.8rem;
    }

    .services-section {
        padding: 4rem 2rem;
    }

    .services-title h2 {
        font-size: 3rem;
    }

    .services-title h3 {
        font-size: 1.5rem;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2.5rem;
        padding: 1.5rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 1.25rem);
        max-width: calc(50% - 1.25rem);
        height: 400px;
    }

    .service-overlay {
        padding: 2rem;
    }

    .service-overlay h3 {
        font-size: 1.5rem;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .play-button {
        width: 70px;
        height: 70px;
    }

    .play-button::after {
        font-size: 1.5rem;
    }

    
    .contact-section {
        padding: 4rem 2rem;
    }

    .contact-container {
        flex-direction: row;
        gap: 4rem;
    }

    .form-card,
    .evaluation-card {
        flex: 1;
        padding: 3rem;
    }

    .form-card h2 {
        font-size: 2.2rem;
    }

    .form-card h3 {
        font-size: 1rem;
    }

    .evaluation-card h2 {
        font-size: 2.5rem;
    }

    .evaluation-card h3 {
        font-size: 0.95rem;
    }

    .evaluation-image {
        max-width: 800px;
        aspect-ratio: auto;
        height: 500px;
        border-radius: 90px;
    }

    .submit-button {
        padding: 1.3rem;
        font-size: 1.1rem;
    }

    .cta-banner {
        font-size: 1.5rem;
        padding: 2rem;
    }

    .phone-banner {
        font-size: 1.8rem;
        padding: 1.5rem;
    }

  
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .image-slider {
        height: 450px;
    }

    .about-section {
        padding: 6rem 2rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .intro-text p {
        font-size: 1.25rem;
    }

    .stat-card {
        padding: 2.5rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .benefit-card {
        padding: 2.5rem;
    }

    .benefit-card h3 {
        font-size: 1.5rem;
    }

    .cta-container {
        padding: 5rem 4rem;
    }

    .cta-container h3 {
        font-size: 2rem;
    }

    .form-card {
        max-width: 500px;
        margin: 0 auto;
        padding: 3rem 2.5rem;
    }

    .contact-container {
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
    }

    .submit-button {
        margin-bottom: 0;
    }
}

/* Animación para mensaje de éxito del formulario */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}