/* ============================================
   VARIABLES Y RESET
   ============================================ */

:root {
    --primary: #0891B2;
    --secondary: #059669;
    --accent: #EA580C;
    --light: #F0F9FA;
    --dark: #1F2937;
    --gray: #F3F4F6;
    --border: #E5E7EB;
    --muted: #6B7280;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
}

/* ============================================
   UTILIDADES
   ============================================ */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

/* ============================================
   BOTONES
   ============================================ */

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-primary:hover {
    background-color: #0a7a96;
    box-shadow: 0 10px 25px rgba(8, 145, 178, 0.3);
}

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

.btn-secondary:hover {
    background-color: #d94b07;
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3);
}

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

.btn-light:hover {
    background-color: #f0f9fa;
}

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

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   HEADER / NAVEGACIÓN
   ============================================ */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text h1 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--muted);
}

.nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 0.375rem;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    width: 1.5rem;
    height: 0.25rem;
    background-color: var(--dark);
    border-radius: 0.125rem;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

@media (max-width: 767px) {
    .header-content .btn {
        display: none;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .nav.active {
        display: flex;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.7) 0%, rgba(5, 150, 105, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 3;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.slider-btn.prev {
    left: 1rem;
}

.slider-btn.next {
    right: 1rem;
}

.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.slider-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicator.active {
    background-color: var(--white);
    width: 2rem;
}

/* ============================================
   PRODUCTOS
   ============================================ */

.products {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--white), var(--gray));
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

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

.product-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.product-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   DIFERENCIADORES
   ============================================ */

.differentiators {
    padding: 4rem 0;
    background-color: var(--white);
}

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

.diff-card {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    transition: all 0.3s ease;
    background: linear-gradient(to br, var(--white), var(--gray));
}

.diff-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(8, 145, 178, 0.1);
}

.diff-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.diff-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.diff-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* ============================================
   PRESENCIA
   ============================================ */

.presence {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--gray), var(--white));
}

.presence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.presence-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.presence-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.locations {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.location {
    padding: 0.75rem 1rem;
    background-color: var(--gray);
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary);
}

.presence-box p {
    color: var(--muted);
    line-height: 1.6;
}

.coverage-map {
    background: linear-gradient(to right, rgba(8, 145, 178, 0.05), rgba(5, 150, 105, 0.05));
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border);
}

.coverage-map h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.map-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.map-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.flag {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.map-item h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.map-item p {
    color: var(--muted);
    font-size: 0.9rem;
}

/* ============================================
   CAPACIDADES
   ============================================ */

.capabilities {
    padding: 4rem 0;
    background-color: var(--white);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.capability-card {
    padding: 2rem;
    background: linear-gradient(to br, var(--white), var(--gray));
    border: 1px solid var(--border);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.capability-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(8, 145, 178, 0.1);
}

.capability-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.capability-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.capability-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.process {
    background: linear-gradient(to right, rgba(8, 145, 178, 0.05), rgba(5, 150, 105, 0.05));
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border);
}

.process h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.step {
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.step p {
    color: var(--muted);
    font-size: 0.9rem;
}

/* ============================================
   SOBRE NOSOTROS
   ============================================ */

.about {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--white), var(--gray));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 2rem 0;
}

.highlight {
    color: var(--dark);
    font-weight: 500;
}

.vision-box {
    background: linear-gradient(to right, rgba(8, 145, 178, 0.1), rgba(5, 150, 105, 0.1));
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    margin-top: 2rem;
}

.vision-box h3 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.vision-box p {
    color: var(--muted);
}

/* ============================================
   TESTIMONIOS
   ============================================ */

.testimonials {
    padding: 4rem 0;
    background-color: var(--white);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.testimonial-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: none;
    animation: fadeInUp 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

.stars {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.quote {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.testimonial-author img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.testimonial-author h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--muted);
    font-size: 0.9rem;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    background-color: #0a7a96;
    transform: scale(1.1);
}

.testimonial-indicators {
    display: flex;
    gap: 0.75rem;
}

.testimonial-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicator.active {
    background-color: var(--primary);
    width: 2rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(to br, rgba(8, 145, 178, 0.1), rgba(5, 150, 105, 0.1));
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--muted);
    font-weight: 500;
}

/* ============================================
   CTA
   ============================================ */

.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.cta-content {
    margin-bottom: 3rem;
}

.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.cta-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.cta-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.cta-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.contact-box {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
}

.contact-box h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.contact-box p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: #1F2937;
    color: #D1D5DB;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: #D1D5DB;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* ============================================
   ANIMACIONES
   ============================================ */

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

/* ============================================
   SECCION DE CONTACTO
   ============================================ */

.contact-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--gray), var(--white));
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.info-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.info-box {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.info-box h3 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.info-box p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

/* ============================================
   FORMULARIO DE CONTACTO
   ============================================ */

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--white);
    color: var(--dark);
}

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

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

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-form button {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.form-note {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 1rem;
    text-align: center;
}

/* ============================================
   MODAL DE CONFIRMACION
   ============================================ */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideInUp 0.3s ease;
}

.modal-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.modal-content h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.modal-content p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.modal-content button {
    width: 100%;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .slider-btn {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .info-boxes {
        grid-template-columns: 1fr;
    }
}
