/* CSS Reset y Variables */
:root {
    --primary-blue: #006cad;
    --primary-green: #01aa0f;
    --primary-red: #f83438;
    --primary-yellow: #feb101;
    --accent-blue: #22C4F9;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --background: #ffffff;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.25);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Utilidades */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(34, 196, 249, 0.3) 50%, rgba(255, 215, 0, 0.2) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--accent-blue), var(--primary-yellow)) 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Header color change on scroll */
.header.scrolled {
    background: linear-gradient(135deg, rgba(34, 196, 249, 0.95) 0%, rgba(255, 215, 0, 0.3) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.header.scrolled.alt {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95) 0%, rgba(34, 196, 249, 0.3) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.navbar {
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.logo-text {
    font-family: var(--font-primary);
    font-weight: 800;
    color: white;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-text::after {
    content: "MÉXICO";
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    margin: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--accent-blue);
    background: rgba(34, 196, 249, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 196, 249, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--primary-yellow));
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.nav-social {
    display: flex;
    gap: 0.7rem;
}

.social-link {
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(34, 196, 249, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-yellow));
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(34, 196, 249, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.6);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* Hero Section con animación de nubes flotantes */
.hero-section {
    min-height: 100vh;
    background-image: url('used-assets/fondo.fw.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    padding-top: 120px;
    padding-bottom: 100px;
    z-index: 1;
}

/* Nubes flotantes adicionales */
.floating-cloud {
    position: absolute;
    background-repeat: no-repeat;
    z-index: -1;
}

.cloud-1 {
    background-image: url('used-assets/nu.png');
    background-size: 80%;
    background-position: 10% center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: cloudFloat1 30s infinite alternate;
}

.cloud-2 {
    background-image: url('used-assets/nu-1.png');
    background-size: 10%;
    background-position: -10% 0%;
    width: 150%;
    height: 100%;
    top: 0;
    left: 0;
    animation: cloudFloat2 60s infinite alternate;
}

.cloud-3 {
    background-image: url('used-assets/nu-1.png');
    background-size: 10%;
    background-position: 50% 20%;
    width: 150%;
    height: 100%;
    top: 0;
    left: 0;
    animation: cloudFloat3 90s infinite alternate;
}

/* Animaciones de nubes flotantes */
@keyframes cloudFloat1 {
    from { 
        background-size: 80%;
        background-position: 10% center;
    }
    to { 
        background-size: 60%;
        background-position: 30% center;
    }
}

@keyframes cloudFloat2 {
    from { 
        background-size: 10%;
        background-position: -10% 0%;
    }
    to { 
        background-size: 12%;
        background-position: 100% 0%;
    }
}

@keyframes cloudFloat3 {
    from { 
        background-size: 10%;
        background-position: 50% 20%;
    }
    to { 
        background-size: 12%;
        background-position: 100% 20%;
    }
}



.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 25%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 35%;
    right: 5%;
    animation-delay: 4s;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-logo {
    height: 300px;
    width: auto;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.4));
    animation: logoGlow 3s ease-in-out infinite alternate;
    margin-bottom: 2rem;
}

.slogan-container {
    margin-bottom: 3rem;
    text-align: center;
    background-image: none;
}

.section-separator {
    height: 40px;
    background: transparent;
    position: relative;
    z-index: 3;
}

.slogan-text-1, .slogan-text-2, .slogan-text-3 {
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 0.9;
    color: white;
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.8);
    display: block;
    animation: slideInFromLeft 1s ease forwards;
}

.slogan-text-1 {
    font-size: clamp(3rem, 10vw, 5.5rem);
    margin-bottom: 0.8rem;
    animation-delay: 0.5s;
    opacity: 0;
}

.slogan-text-2 {
    font-size: clamp(3rem, 10vw, 5.5rem);
    margin-bottom: 0.8rem;
    animation-delay: 1s;
    opacity: 0;
}

.slogan-text-3 {
    font-size: clamp(5rem, 15vw, 8.5rem);
    color: var(--primary-yellow);
    margin-bottom: 3rem;
    animation-delay: 1.5s;
    opacity: 0;
    position: relative;
}

/* Removed floating animation */

.animated-question {
    font-family: var(--font-primary);
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    line-height: 1.1;
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 2s;
    opacity: 0;
}

.highlight {
    color: var(--primary-yellow);
    font-weight: 800;
    font-size: 1.1em;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.6);
    animation: glow 3s ease-in-out infinite alternate;
}

.question-mark {
    color: var(--primary-yellow);
    font-size: 1.5em;
    display: inline-block;
    animation: bounceScale 2s infinite ease-in-out;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.6);
    margin-left: 0.3rem;
}

.intro-text {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: white;
    line-height: 1.6;
    max-width: 80%;
    margin: 0 auto 2rem auto;
    text-align: center;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 2.5s;
    opacity: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(34, 196, 249, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

@keyframes bounceScale {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateY(0) scale(1); 
    }
    40% { 
        transform: translateY(-12px) scale(1.3); 
    }
    60% { 
        transform: translateY(-6px) scale(1.15); 
    }
}

@keyframes glow {
    0% {
        text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.6);
    }
    100% {
        text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.6), 0 0 25px rgba(254, 177, 1, 0.8), 0 0 35px rgba(254, 177, 1, 0.4);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    }
    100% {
        filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Services Preview Section */
.services-preview-section {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
    overflow: visible;
    z-index: 10;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.services-preview-section .section-title {
    text-align: center;
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4rem;
    position: relative;
    z-index: 20;
    opacity: 1;
    visibility: visible;
}

.services-preview-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-blue);
}

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 20;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 20;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transition: all 0.4s ease;
}

.seo-card::before { background: var(--primary-green); }
.design-card::before { background: var(--primary-blue); }
.social-card::before { background: var(--primary-yellow); }
.directory-card::before { background: var(--primary-red); }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-medium);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1.5rem auto;
    transition: all 0.4s ease;
}

.seo-card .service-icon { background: var(--primary-green); }
.design-card .service-icon { background: var(--primary-blue); }
.social-card .service-icon { background: var(--primary-yellow); }
.directory-card .service-icon { background: var(--primary-red); }

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-blue);
}

.service-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(20px);
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Service Sections */
.service-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 4;
}

.seo-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, #02aa0a 100%);
    color: white;
    clip-path: polygon(0 8%, 100% 0%, 100% 92%, 0 100%);
    padding: 4rem 0;
}

.design-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0056a3 100%);
    color: white;
    clip-path: polygon(0 0%, 100% 8%, 100% 100%, 0 92%);
    padding: 4rem 0;
}

.design-section .content-left {
    z-index: 15;
    position: relative;
    order: 2;
}

.design-section .content-right {
    z-index: 15;
    position: relative;
    order: 1;
}

.social-section {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #e6a000 100%);
    color: var(--text-dark);
    clip-path: polygon(0 8%, 100% 0%, 100% 92%, 0 100%);
    padding: 4rem 0;
}

.directory-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, #d42c30 100%);
    color: white;
    clip-path: polygon(0 0%, 100% 8%, 100% 100%, 0 92%);
    padding: 4rem 0;
}

.diagonal-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 2;
}

.diagonal-bg.reverse {
    right: auto;
    left: 0;
    clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 0% 100%);
    z-index: 2;
}

.section-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 75vh;
    padding: 4rem 0;
}

/* Remove section images completely */
.section-image {
    display: none;
}

.service-icon-title {
    font-size: 2rem;
    margin-right: 1rem;
    vertical-align: middle;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.text-content {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.7;
}

.text-content p {
    margin-bottom: 2rem;
}

.feature-highlight {
    background: rgba(0, 0, 0, 0.85);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-yellow);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
    z-index: 1;
}

.feature-highlight > * {
    position: relative;
    z-index: 2;
}

.feature-highlight i {
    font-size: 1.8rem;
    margin-top: 0.2rem;
    color: var(--primary-yellow);
    text-shadow: 0 0 15px rgba(254, 177, 1, 0.5);
}

.feature-highlight p {
    margin: 0;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.benefits-list i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Content Boxes */
.info-box, .benefits-box, .process-box {
    background: transparent;
    color: var(--text-dark);
    padding: 2.5rem;
    height: fit-content;
}

.stats-box {
    background: transparent;
    color: var(--text-dark);
    padding: 2.5rem;
    height: fit-content;
}

.info-box h3, .benefits-box h3, .process-box h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    display: inline-block;
}

.stats-box h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    display: inline-block;
}

.stat-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.info-item, .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-item i, .benefit-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.info-item strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.info-item p, .benefit-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    border-left: 4px solid var(--primary-red);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

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

.step-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.color-palette {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.color-swatch:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Old contact styles removed */

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-details p {
    margin: 0;
    color: #666;
}

.social-media {
    margin-top: 3rem;
}

.social-media h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.facebook { background: #1877f2; }
.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.twitter { background: #1da1f2; }
.linkedin { background: #0077b5; }
.youtube { background: #ff0000; }
.whatsapp { background: #25d366; }

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light);
}

.contact-form h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(34, 196, 249, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 196, 249, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    z-index: 5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 6;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-form input {
    padding: 0.8rem;
    border: 1px solid #555;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-form input::placeholder {
    color: #ccc;
}

.footer-form button {
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-yellow));
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 196, 249, 0.3);
}

.footer-section h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--primary-yellow));
    border-radius: 3px;
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-blue);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-logo {
        height: 200px;
    }
    
    .hero-content {
        width: 100%;
        text-align: center;
    }
    
    .shape {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .diagonal-bg {
        display: none;
    }
    
    .section-image {
        position: static;
        width: 100%;
        height: 200px;
        opacity: 0.3;
        margin: 1rem 0;
        transform: none !important;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .nav-social {
        display: none;
    }
    
    .hero-section,
    .seo-section,
    .design-section,
    .social-section,
    .directory-section {
        clip-path: none;
        padding: 4rem 0;
    }
}

/* Animated text styles */
.animated-title {
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-yellow), var(--primary-red));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite, fadeInUp 1s ease;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.animated-section-title {
    color: white;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    animation: titlePulse 2s ease-in-out infinite alternate;
    position: relative;
}

.animated-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), transparent);
    animation: underlineExpand 1.5s ease-out;
}

.service-title {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-description {
    transition: all 0.3s ease;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-bg-image {
    position: absolute;
    bottom: -10%;
    right: 5%;
    width: 350px;
    height: 250px;
    opacity: 0.3;
    z-index: 1;
}

.services-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.additional-services-image {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 300px;
    height: 200px;
    opacity: 0.25;
    z-index: 0;
}

.additional-services-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.2));
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes titlePulse {
    0% {
        text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
        transform: scale(1);
    }
    100% {
        text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 255, 255, 0.3);
        transform: scale(1.02);
    }
}

@keyframes underlineExpand {
    0% { width: 0; }
    100% { width: 100%; }
}

@media (max-width: 480px) {
    .slogan-text-1, .slogan-text-2 {
        font-size: 2rem;
    }
    
    .slogan-text-3 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .stats-box, .info-box, .benefits-box, .process-box {
        padding: 1.5rem;
    }
}

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

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }/* Contact Section - Restored Original Design */
.contact-section {
    padding: 4rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.contact-info-panel {
    background: linear-gradient(135deg, #2196F3 0%, #22C4F9 100%);
    color: white;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

.contact-info-panel h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.contact-info-panel > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.contact-methods {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-details p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link i {
    font-size: 1.1rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form-panel {
    background: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-note {
    font-size: 0.85rem;
    margin: 0.5rem 0 1.5rem 0;
    color: #666;
    font-style: italic;
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: var(--text-dark);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(34, 196, 249, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-form .submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #1976D2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 196, 249, 0.3);
}

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

.contact-form .submit-btn i {
    margin-right: 0.5rem;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        margin: 0 1rem;
    }
    
    .contact-info-panel,
    .contact-form-panel {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-panel h2 {
        font-size: 2rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .map-container iframe {
        height: 200px;
    }
}
/* Additional styles for services included section */
.services-included h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    display: inline-block;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.included-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.included-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.included-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Estilos para alertas de formulario */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    position: relative;
    animation: fadeIn 0.5s ease-in-out;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.5s ease;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.alert i {
    font-size: 1.2rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}