/* ====================
   RESET Y ESTILOS BASE
   ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
}

/* ====================
   TOP HEADER WHATSAPP
   ==================== */
.top-header {
    background-color: #f5f5f5;
    padding: 10px 0;
    text-align: center;
}

.whatsapp-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #d32f2f;
    font-weight: 600;
    font-size: 1.1rem;
}

.whatsapp-banner i {
    font-size: 1.4rem;
}

/* ====================
   MAIN HEADER - MENÚ
   ==================== */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img {
    max-height: 100px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #d32f2f;
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
    background: url('../img/fondo.jpg') center/cover fixed;
    padding: 4rem 2rem;
    color: white;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.hero-content {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255,255,255,0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    width: fit-content; /* Nueva propiedad clave */
    margin: 0; /* Aseguramos que no tenga márgenes externos */
}

.location-badge i {
    color: #4a69d8;
    font-size: 1.5rem;
}

.main-heading {
    font-size: 2.8rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    max-width: 80%;
}

.emergency-block {
    background: #4a69d8;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    margin-top: 1rem;
    backdrop-filter: blur(5px);
    width: fit-content; /* Nueva propiedad clave */
    margin: 0; /* Aseguramos que no tenga márgenes externos */
}

.emergency-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.emergency-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.certification-logos {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.certification-logos img {
    max-height: 45px;
    width: auto;
}

.emergency-button {
    background: #00bf63;
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s;
    display: inline-block;
    width: fit-content;
}

.emergency-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.technical-certification {
    max-width: 120px;
    position: absolute;
    right: 2rem;
    bottom: -1.5rem;
}

.hero-gallery {
    flex: 0 0 20%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.gallery-image:hover {
    transform: scale(1.03);
}

/* ====================
   RESPONSIVE DESIGN
   ==================== */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
    }
    
    .hero-content, .hero-gallery {
        flex: 1;
        width: 100%;
    }
    
    .main-heading {
        max-width: 100%;
        font-size: 2.2rem;
    }
    
    .gallery-image {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .logo img {
        max-height: 50px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .main-nav a {
        font-size: 0.85rem;
    }
    
    .top-header {
        padding: 8px 0;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .main-heading {
        font-size: 1.8rem;
    }
    
    .emergency-block {
        padding: 1.5rem;
    }
    
    .emergency-button {
        width: 100%;
    }
    
    .technical-certification {
        position: static;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-banner span {
        font-size: 0.9rem;
    }
    
    .location-badge {
        font-size: 0.9rem;
    }
    
    .main-heading {
        font-size: 1.6rem;
    }
    
    .emergency-title {
        font-size: 1.4rem;
    }
}

/* ====================
   FOOTER
   ==================== */
.site-footer {
    background: #2d3436;
    color: #ffffff;
    padding: 40px 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-title {
    color: #d32f2f;
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d32f2f;
}

.footer-contact li,
.footer-services li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact a,
.footer-services a {
    color: #dfe6e9;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover,
.footer-services a:hover {
    color: #d32f2f;
}

.footer-contact i {
    width: 20px;
    text-align: center;
    color: #d32f2f;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: #ffffff;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: #d32f2f;
}

.copyright {
    background: #1a1e1f;
    padding: 20px;
    text-align: center;
    margin-top: 10px;
}

.copyright p {
    font-size: 0.9rem;
    color: #b2bec3;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact li,
    .footer-services li {
        justify-content: center;
    }

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

/* =====================
   TESTIMONIOS
   ===================== */
.testimonials {
    background: #f9f9f9;
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: #2d3436;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

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

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.quote-icon {
    color: #d32f2f;
    font-size: 2.5rem;
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d32f2f;
}

.client-details h4 {
    color: #2d3436;
    margin-bottom: 5px;
}

.client-role {
    color: #777;
    font-size: 0.9rem;
}

.rating {
    color: #ffd700;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .client-info {
        flex-direction: column;
        text-align: center;
    }
    
    .client-photo {
        margin-bottom: 10px;
    }
}

/* =====================
   PROCESO DE TRABAJO
   ===================== */
.work-process {
    padding: 80px 20px;
    background: #ffffff;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.process-steps {
    flex: 1;
    max-width: 50%;
}

.process-image {
    flex: 1;
    max-width: 50%;
}

.process-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-title {
    color: #2d3436;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    transition: background 0.3s;
}

.step:hover {
    background: #f8f9fa;
}

.step-icon {
    color: #d32f2f;
    font-size: 1.8rem;
    min-width: 50px;
    text-align: center;
}

.step-content h3 {
    color: #2d3436;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-content p {
    color: #636e72;
    line-height: 1.6;
}

.process-button {
    display: inline-block;
    background: #d32f2f;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 30px;
    transition: transform 0.3s;
}

.process-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .process-container {
        flex-direction: column;
    }
    
    .process-steps,
    .process-image {
        max-width: 100%;
        width: 100%;
    }
    
    .process-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-icon {
        margin-bottom: 10px;
    }
    
    .process-button {
        width: 100%;
        text-align: center;
    }
}

/* ====================
   TÍTULO SECCIÓN NOSOTROS
   ==================== */
.nosotros-header {
    background: #6EC1F5;
    padding: 80px 20px;
    text-align: center;
}

.section-title-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.nosotros-title {
    color: #2d3436;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.title-decoration {
    width: 80px;
    height: 4px;
    background: #d32f2f;
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.title-decoration::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 4px solid #d32f2f;
    left: 50%;
    top: -8px;
    transform: translateX(-50%) rotate(45deg);
    background: #6EC1F5;
}

/* Responsive */
@media (max-width: 768px) {
    .nosotros-title {
        font-size: 2rem;
    }
    
    .nosotros-header {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .nosotros-title {
        font-size: 1.8rem;
    }
    
    .title-decoration {
        width: 60px;
    }
}

/* ====================
   MENÚ ACTIVE
   ==================== */
.main-nav a {
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #d32f2f;
}

.main-nav a.active {
    color: #ffffff;
    background: #d32f2f;
    border-radius: 5px;
    font-weight: 600;
}

/* ====================
   SECCIÓN NOSOTROS
   ==================== */
.nosotros-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.nosotros-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.nosotros-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.nosotros-images img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nosotros-content {
    padding: 20px;
}

.section-title {
    color: #2d3436;
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #d32f2f;
}

.empresa-descripcion {
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.diferencia-title {
    color: #2d3436;
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.diferencia-list {
    list-style: none;
    padding: 0;
}

.diferencia-list li {
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.diferencia-list i {
    color: #d32f2f;
    font-size: 1.4rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.li-content strong {
    color: #2d3436;
    display: block;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .nosotros-container {
        grid-template-columns: 1fr;
    }
    
    .nosotros-images {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .nosotros-images img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .diferencia-title {
        font-size: 1.4rem;
    }
    
    .nosotros-images img {
        height: 300px;
    }
}

/* ====================
   CARRUSEL SERVICIOS
   ==================== */
.servicios-carousel {
    padding: 60px 20px;
    background: #fff;
}

.carousel-header {
    text-align: center;
    margin-bottom: 40px;
}

.carousel-main-title {
    color: #d32f2f;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid #d32f2f;
    display: inline-block;
    padding-bottom: 10px;
}

.carousel-subtitle {
    color: #333;
    font-size: 1.5rem;
    margin-top: 15px;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.carousel-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-item.active {
    display: block;
    opacity: 1;
}

.carousel-item2 {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-item2.active {
    display: block;
    opacity: 1;
}

.carousel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.carousel-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.carousel-image2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.carousel-content h4 {
    color: #d32f2f;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.carousel-content ul {
    list-style: none;
    padding-left: 0;
}

.carousel-content li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
}

.carousel-content li::before {
    content: "•";
    color: #d32f2f;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -3px;
}

.carousel-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #d32f2f;
}

.dot2 {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

.dot2.active {
    background-color: #d32f2f;
}

.carousel-footer {
    text-align: center;
    margin-top: 40px;
}

.carousel-footer p {
    color: #d32f2f;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .carousel-image img {
        height: 300px;
    }
    
    .carousel-image2 img {
        height: auto;
    }
    
    .carousel-main-title {
        font-size: 1.4rem;
    }
    
    .carousel-subtitle {
        font-size: 1.2rem;
    }
    
    .carousel-content h4 {
        font-size: 1.5rem;
    }
}

/* ====================
   PÁGINA DE CONTACTO
   ==================== */
.contacto-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.contacto-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contacto-info {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contacto-title {
    color: #d32f2f;
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 3px solid #d32f2f;
    padding-bottom: 10px;
}

.contacto-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: center;
}

.contacto-item i {
    color: #d32f2f;
    font-size: 1.5rem;
    min-width: 30px;
    text-align: center;
}

.contacto-item h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contacto-item p {
    color: #555;
}

.contacto-item a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.contacto-item a:hover {
    color: #d32f2f;
}

.horario-atencion {
    margin-top: 40px;
    padding: 20px;
    background: #fff5f5;
    border-radius: 8px;
    text-align: center;
}

.horario-atencion h3 {
    color: #d32f2f;
    margin-bottom: 10px;
}

/* Formulario */
.contacto-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-title {
    color: #d32f2f;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d32f2f;
    box-shadow: 0 0 0 2px rgba(211,47,47,0.1);
}

.submit-btn {
    background: #d32f2f;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #b71c1c;
}

/* Responsive */
@media (max-width: 768px) {
    .contacto-container {
        grid-template-columns: 1fr;
    }
    
    .contacto-info,
    .contacto-form {
        padding: 25px;
    }
    
    .contacto-title,
    .form-title {
        font-size: 1.6rem;
    }
}

/* ====================
   COPYRIGHT FULL WIDTH
   ==================== */
.copyright-fullwidth {
    background: #1a1e1f; /* Color de fondo */
    width: 100%;
    padding: 20px 0;
    margin-top: 50px; /* Ajusta según necesidad */
}

.copyright-fullwidth .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.copyright-fullwidth p {
    color: #b2bec3;
    font-size: 0.9rem;
    margin: 0;
}

/* ====================
   CTA DE EMERGENCIA
   ==================== */
.cta-emergencia {
    background: #d32f2f; /* Color de fondo */
    padding: 60px 20px;
    color: white;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.cta-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-highlight {
    color: #ffd700; /* Color dorado para destacar */
    display: block;
}

.cta-subtitle {
    font-size: 1.8rem;
    margin: 30px 0;
    font-weight: 600;
}

.cta-payment-methods {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-top: 20px;
}

.cta-button-container {
    text-align: center;
}

.cta-button {
    background: #ffffff;
    color: #d32f2f;
    padding: 25px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button i {
    font-size: 2rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .cta-subtitle {
        font-size: 1.4rem;
    }

    .cta-payment-methods {
        margin: 20px auto;
    }

    .cta-button {
        font-size: 1.2rem;
        padding: 20px 40px;
    }
}

/* Contenedor métodos de pago */
.payment-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: fit-content;
}

.cta-payment-methods {
    max-width: 300px;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .payment-container {
        padding: 15px;
        width: 90%;
        max-width: 400px;
    }
    
    .cta-payment-methods {
        max-width: 250px;
    }
}

.payment-container {
    text-align: center; /* Centra todo el contenido */
}

.payment-container h2 {
    margin-bottom: 30px; /* Espacio bajo el título */
    font-size: 1.5rem;
    color: #333;
}

.cta-payment-methods {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Centra la imagen */
}
/* Estilos móviles */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .hero-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }

  .hero-content {
    width: 100%;
    text-align: center;
  }

  .hero-gallery {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .gallery-image {
    width: 100px;
    height: auto;
  }

  .process-container {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .process-image {
    margin-top: 20px;
    max-width: 100%;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    margin: auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .logo img {
    max-width: 180px;
    height: auto;
  }
}
/* MENÚ RESPONSIVE */
.main-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  margin-left: auto;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    display: none;
    background: white;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }

  .main-nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .main-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: relative;
  }

  .logo img {
    max-width: 130px;
    height: auto;
  }
}
@media (min-width: 769px) {
  .menu-toggle {
    display: none !important;
  }
}
.hero-container {
  display: flex;
  flex-direction: column !important;
}

.hero-gallery-full {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.gallery-full-image {
  width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.gallery-full-image2 {
  width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.gallery-full-image3 {
  width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}