/* Estilos generales y reset */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500;600&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Montserrat', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden;
}

:root {
    --color-dorado: #d4af37;
    --color-dorado-claro: #f7ef8a;
    --color-negro: #191919;
    --color-blanco: #ffffff;
    --color-gris: #f5f5f5;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 20px;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: rgba(25, 25, 25, 0.95);
}

header.scrolled {
    background: rgba(25, 25, 25, 0.98);
    padding: 12px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1002;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--color-blanco);
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin: 0 12px;
}

.nav-menu a {
    color: var(--color-blanco);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.5px;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--color-dorado);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-menu a:hover:after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    color: var(--color-blanco);
    font-size: 24px;
    cursor: pointer;
    z-index: 1002;
}


/* Carrusel principal */
.slider-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slider-mask {
    width: 100%;
    height: 100%;
    position: relative;
}

.w-slide {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.w-slide.active {
    opacity: 1;
    z-index: 2;
}

.top-section-bg-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-bg-full-section {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.bg-gradient-full-section {
    z-index: -1;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    position: absolute;
    inset: 0%;
}

.container-default {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.grid-2-columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    width: 100%;
}

.inner-container {
    max-width: 734px;
}

.subtitle {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 32px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    padding-top: 10%;
    font-weight: 500;
}

.display-1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    font-family: 'Poppins', sans-serif;
}

.mg-bottom-32px {
    margin-bottom: 32px;
}

.slider-arrows {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    display: flex;
}

.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-dorado);
    transform: scale(1.2);
}

/* Sección de servicios */
.services-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

.services-header {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    text-align: center;
}

.services-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.services-title {
    text-align: center;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #A32785;
    margin-bottom: 16px;
    font-weight: 600;
}

.services-main-title {
    font-size: 38px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.services-intro {
    font-size: 17px;
    line-height: 1.7;
    color: #2c3e50;
    max-width: 800px;
    margin: 0 auto;
    flex-grow: 1;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    position: relative;
}

.service-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
    display: flex;
    flex-direction: column;
}

.service-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-content {
    position: relative;
    padding: 0;
    background: transparent;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 30px;
    text-align: center;
    padding-top: 30px;
}

.service-icon img {
    transition: transform 0.3s ease;
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.service-content:hover .service-icon img {
    transform: scale(1.1);
}

.service-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.service-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: center;
    padding: 0 20px;
}

.service-line {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-dorado), transparent);
    width: 60%;
    margin: 20px auto;
    border-radius: 2px;
}

.service-cta {
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
    color: var(--color-dorado);
    padding: 0 20px 30px;
}

/* Sección de proyectos */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.projects-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f2f6fc 100%);
    position: relative;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23e9ecef" fill-opacity="0.2" d="M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,224C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.projects-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

.projects-pre-title {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #A32785;
    margin-bottom: 16px;
    font-weight: 600;
}

.projects-main-title {
    font-size: 52px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
}

.projects-intro {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Carrusel tipo tríptico */
.triptych-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
    perspective: 1500px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-card {
    position: absolute;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.21, 1.00, 0.34, 1.00);
    cursor: pointer;
}

.project-card.left {
    transform: translateX(-90%) scale(0.85);
    filter: blur(2px) brightness(0.9);
    z-index: 1;
}

.project-card.center {
    transform: translateX(0) scale(1);
    filter: none;
    z-index: 3;
    width: 350px;
    height: 450px;
}

.project-card.right {
    transform: translateX(90%) scale(0.85);
    filter: blur(2px) brightness(0.9);
    z-index: 1;
}

.project-card.hidden {
    opacity: 0;
    visibility: hidden;
}

.card-image-container {
    position: relative;
    height: 280px;
    width: 100%;
    overflow: hidden;
}

.card-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
}

.card-slide.active {
    opacity: 1;
}

.card-slide-controls {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.card-slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-slide-dot.active {
    background: white;
    transform: scale(1.2);
}

.card-content {
    padding: 20px;
    height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s ease;
}

.project-card:not(.center) .card-content {
    opacity: 0;
    transform: translateY(10px);
}

.project-card.center .card-content {
    opacity: 1;
    transform: translateY(0);
}


.proyects-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.proyect-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.card-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.card-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.meta-icon {
    width: 28px;
    height: 28px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A32785;
    font-size: 13px;
}

.meta-content {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.card-link {
    display: inline-block;
    background: var(--color-negro);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 10px;
}

.card-link:hover {
    background: var(--color-dorado);
    color: var(--color-negro);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Controles de navegación proyectos */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px 20px;
    z-index: 10;
    pointer-events: none;
}

.carousel-control {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.carousel-control:hover {
    background: #A32785;
    color: white;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 12px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #A32785;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--color-dorado);
    transform: scale(1.2);
}

.view-all-button {
    display: block;
    text-align: center;
    margin-top: 70px;
}

.view-all-btn {
    background: var(--color-negro);
    color: white;
    padding: 16px 42px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.view-all-btn:hover {
    background: var(--color-dorado);
    color: var(--color-negro);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Sección de testimonios */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    border-radius: 16px;
    margin: 20px 0;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23dee2e6" fill-opacity="0.2" d="M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,224C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
    border-radius: 16px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.testimonials-pre-title {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #A32785;
    margin-bottom: 16px;
    font-weight: 600;
}

.testimonials-main-title {
    font-size: 42px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
}

.testimonials-intro {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Carrusel de testimonios */
.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 33.333%;
    padding: 15px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
    position: relative;
    padding-left: 25px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 50px;
    color: var(--color-dorado);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    border-top: 1px solid #f1f1f1;
    padding-top: 20px;
    margin-top: auto;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.author-role {
    font-size: 14px;
    color: var(--color-dorado);
    font-weight: 500;
}

/* Controles de navegación testimonios */
.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
    gap: 15px;
}

.testimonial-control {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.testimonial-control:hover {
    background: #A32785;
    color: white;
    transform: scale(1.1);
}

.carousel-control:hover,
.testimonial-control:hover {
    background: var(--color-dorado);
}

.services-main-title,
.projects-main-title,
.testimonials-main-title,
.contact-main-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.services-title,
.projects-pre-title,
.testimonials-pre-title,
.contact-pre-title {
    color: var(--color-dorado);
    font-weight: 600;
}




/* ===== SECCIÓN DE CONTACTO CON REDES SOCIALES ===== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-negro) 0%, #2d2d2d 100%);
    color: var(--color-blanco);
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.contact-pre-title {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-dorado);
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-main-title {
    font-size: 42px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-blanco);
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.contact-intro {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.contact-container-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Información de contacto mejorada */
.contact-info-improved {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card-improved {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item-improved {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon-improved {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-improved img {
    width: 25px;
    height: 25px;
    filter: invert(1);
}

.contact-details-improved {
    flex: 1;
}

.contact-label-improved {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-value-improved {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-blanco);
    line-height: 1.4;
}

.contact-link-improved {
    color: var(--color-dorado);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link-improved:hover {
    color: var(--color-dorado-claro);
}

/* WhatsApp mejorado */
.whatsapp-section-improved {
    text-align: center;
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 16px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.whatsapp-title-improved {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.whatsapp-description-improved {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.whatsapp-btn-improved {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #075E54;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn-improved:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: #f0f0f0;
}

.whatsapp-icon-improved {
    width: 28px;
    height: 28px;
    margin-right: 12px;
}

/* Sección de Redes Sociales */
.contact-social-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-container-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.contact-link-improved {
    color: var(--color-dorado);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link-improved:hover {
    color: var(--color-dorado-claro);
    transform: translateX(3px);
}


.social-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-blanco);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.social-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-dorado);
}

.social-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: var(--color-dorado);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 25px;
    height: 25px;
    fill: var(--color-negro);
}

.social-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-blanco);
    margin-bottom: 8px;
}

.social-username {
    font-size: 14px;
    color: var(--color-dorado);
    margin-bottom: 15px;
}

.social-followers {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--color-blanco);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid var(--color-dorado);
    width: 100%;
}

.social-btn:hover {
    background: var(--color-dorado);
    color: var(--color-negro);
}

/* ===== FOOTER COMPLETO MEJORADO ===== */
.footer-complete {
    background: #111;
    color: var(--color-blanco);
    padding: 80px 0 0;
    position: relative;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-complete {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding-bottom: 80px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.footer-logo-complete {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-blanco);
    line-height: 1.2;
}

.footer-description-complete {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.footer-social-complete {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link-complete {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blanco);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link-complete::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-dorado);
    transition: left 0.3s ease;
    z-index: 1;
}

.social-link-complete:hover::before {
    left: 0;
}

.social-link-complete svg {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.social-link-complete:hover svg {
    color: var(--color-negro);
}

.footer-heading-complete {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-blanco);
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.footer-heading-complete::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-dorado);
}

.footer-links-complete {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links-complete a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

.footer-links-complete a::before {
    content: '▸';
    color: var(--color-dorado);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.footer-links-complete a:hover {
    color: var(--color-dorado);
    transform: translateX(5px);
}

.footer-links-complete a:hover::before {
    transform: translateX(3px);
}

.footer-contact-complete {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item-complete {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.contact-info-item-complete strong {
    color: var(--color-blanco);
    font-weight: 600;
}

.contact-info-item-complete a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item-complete a:hover {
    color: var(--color-dorado);
}

.contact-info-icon {
    width: 18px;
    height: 18px;
    color: var(--color-dorado);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom-complete {
    padding: 30px 20px;
    background: #0a0a0a;
}

.footer-bottom-content-complete {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-complete {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal-complete {
    display: flex;
    gap: 25px;
}

.footer-legal-complete a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal-complete a:hover {
    color: var(--color-dorado);
}

/* Laptops (992px - 1199px) */
@media (max-width: 1199px) {
    .projects-main-title {
        font-size: 46px;
    }

    .triptych-carousel {
        height: 450px;
    }

    .project-card {
        width: 320px;
        height: 420px;
    }

    .project-card.center {
        width: 320px;
        height: 420px;
    }

    .card-image-container {
        height: 250px;
    }

    .card-content {
        height: 170px;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {

    /* Contact Section */
    .contact-container-social {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    /* Projects Section */
    .projects-main-title {
        font-size: 38px;
    }

    .triptych-carousel {
        height: 420px;
    }

    .project-card {
        width: 300px;
        height: 400px;
    }

    .project-card.center {
        width: 300px;
        height: 400px;
    }

    .project-card.left {
        transform: translateX(-85%) scale(0.85);
    }

    .project-card.right {
        transform: translateX(85%) scale(0.85);
    }

    .card-image-container {
        height: 230px;
    }

    .card-content {
        height: 170px;
    }

    /* Grid Layouts */
    .grid-2-columns {
        grid-template-columns: 1fr;
    }

    .inner-container {
        text-align: center;
        padding: 0 20px;
    }

    .display-1 {
        font-size: 40px;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(25, 25, 25, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 80px 20px;
        transition: all 0.5s ease;
        z-index: 1001;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 20px 0;
    }

    .nav-menu a {
        font-size: 20px;
    }

    .mobile-toggle {
        display: block;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-header {
        margin-bottom: 60px;
    }

    .services-main-title {
        font-size: 32px;
    }

    .service-item:nth-child(2),
    .service-item:nth-child(4) {
        margin-top: 0;
        align-self: start;
    }

    /* Testimonials Section */
    .testimonial-slide {
        flex: 0 0 50%;
    }

    .testimonials-main-title {
        font-size: 38px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-brand-complete {
        padding-bottom: 70px;
        text-align: center;
    }

    .footer-logo-section {
        align-items: center;
    }

    .footer-logo {
        width: 180px;
        height: 180px;
    }

    .footer-social-complete {
        position: relative;
        margin-top: 30px;
        padding-top: 30px;
    }

    .footer-heading-complete::after {
        left: 50%;
        transform: translateX(-50%);
    }

}

/* Móviles Grandes (576px - 767px) */
@media (max-width: 767px) {

    /* Secciones generales */
    .contact-section,
    .projects-section,
    .services-section,
    .testimonials-section {
        padding: 70px 0;
    }

    /* Contact Section */
    .contact-main-title {
        font-size: 36px;
    }

    .contact-info-improved,
    .contact-social-section {
        padding: 30px 25px;
    }

    .whatsapp-section-improved {
        padding: 25px 20px;
    }

    /* Projects Section */
    .projects-main-title {
        font-size: 32px;
    }

    .projects-intro {
        font-size: 16px;
    }

    .triptych-carousel {
        height: auto;
        perspective: none;
    }

    .carousel-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .project-card {
        position: relative;
        width: 100%;
        max-width: 400px;
        height: 450px;
        transform: none !important;
        filter: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
    }

    .project-card.active {
        display: block;
    }

    .carousel-controls {
        position: relative;
        top: auto;
        margin-top: 30px;
        justify-content: center;
        gap: 30px;
    }

    .carousel-control {
        position: static;
    }

    .card-content {
        opacity: 1 !important;
        transform: none !important;
    }

    /* Services Section */
    .services-main-title {
        font-size: 28px;
    }

    /* Testimonials Section */
    .testimonials-main-title {
        font-size: 32px;
    }

    .testimonial-slide {
        flex: 0 0 100%;
    }

    .social-stats {
        grid-template-columns: 1fr;
    }

    .footer-complete {
        padding: 60px 0 0;
    }

    .footer-main {
        padding: 0 20px 40px;
        gap: 40px;
    }

    .footer-logo {
        width: 150px;
        height: 150px;
    }

    .footer-logo-complete {
        font-size: 28px;
    }

    .footer-social-complete {
        gap: 12px;
    }

    .social-link-complete {
        width: 45px;
        height: 45px;
    }

    .footer-links-complete a {
        justify-content: center;
    }

    .footer-bottom-content-complete {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal-complete {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    /* Typography */
    .display-1 {
        font-size: 32px;
    }

    .contact-main-title {
        font-size: 28px;
    }

    .contact-container-social {
        gap: 30px;
    }

    .contact-info-improved,
    .contact-social-section {
        padding: 30px 25px;
    }
}

/* Móviles Pequeños (0 - 575px) */
@media (max-width: 575px) {



    /* Typography */
    .projects-main-title,
    .testimonials-main-title {
        font-size: 28px;
    }

    .services-main-title,
    .contact-main-title {
        font-size: 24px;
    }

    .projects-pre-title,
    .testimonials-pre-title,
    .contact-pre-title,
    .services-title {
        font-size: 12px;
    }

    /* Contact Section */
    .contact-social-section {
        padding: 30px 25px;
    }

    .contact-item-improved,
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .whatsapp-title-improved,
    .whatsapp-title {
        font-size: 20px;
    }

    .whatsapp-btn-improved,
    .whatsapp-btn {
        padding: 14px 25px;
        font-size: 16px;
    }

    .footer-main {
        gap: 30px;
    }

    .footer-logo {
        width: 120px;
        height: 120px;
    }

    .footer-logo-complete {
        font-size: 24px;
    }

    .footer-description-complete {
        font-size: 14px;
    }

    .copyright-complete {
        font-size: 12px;
    }

    .footer-legal-complete {
        gap: 10px;
    }

    .footer-legal-complete a {
        font-size: 12px;
    }

}

/* ===== ANIMACIONES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}