/* ============ VARIABLES Y ESTILOS BASE ============ */
:root {
    /* Colores principales */
    --primary-blue: #3498db;
    --dark-blue: #2980b9;
    --deep-blue: #2c3e50;
    --teal-blue: #1abc9c;
    --white: #ffffff;
    --black: #000000;
    --light-gray: #f5f5f5;
    --medium-gray: #ddd;
    --dark-gray: #333;

    /* Degradados */
    --blue-gradient: linear-gradient(135deg, #3498db, #2c3e50);
    --light-blue-gradient: linear-gradient(135deg, #3498db, #1abc9c);
    --dark-blue-gradient: linear-gradient(60deg, #2c3e50, #3498db);

    /* Sombras */
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0px 0px 18px 0 #00002c;

    /* Transiciones */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

/* Reset y estilos base */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Chakra Petch";
    src: url("../font/Chakra_Petch/ChakraPetch-Bold.ttf");
    font-weight: bold;
}

@font-face {
    font-family: "Chakra Petch";
    src: url("../font/Chakra_Petch/ChakraPetch-Regular.ttf");
    font-weight: normal;
}

html {
    font-size: 62.5%;
    font-family: 'Chakra Petch', sans-serif;
    scroll-behavior: smooth;
}

body {
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

section {
    padding: 8rem 0;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 4rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    text-align: center;
}

.section-title span {
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ============ HEADER Y NAVEGACIÓN ============ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    box-shadow: none;
    height: 80px;
    display: flex;
    align-items: center;
    transition: all var(--transition-fast);
}

#header.scrolled {
    background: var(--dark-blue-gradient);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 2rem;
}

.brand h1 {
    font-size: 2.8rem;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
    padding: 0.5rem 0;
    letter-spacing: 1px;
}

.brand h1 span {
    background: var(--light-blue-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}

.nav-list ul {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin-left: 2.5rem;
}

.nav-list a {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-list a::after {
    content: attr(data-after);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: rgba(240, 248, 255, 0.021);
    font-size: 13rem;
    letter-spacing: 50px;
    z-index: -1;
    transition: var(--transition-fast);
}

.nav-list li:hover a::after {
    transform: translate(-50%, -50%) scale(1);
    letter-spacing: initial;
}

.nav-list li:hover a {
    color: var(--primary-blue);
}

/* Hamburguesa para móviles */
.hamburger {
    height: 60px;
    width: 60px;
    display: none;
    border: 3px solid var(--white);
    border-radius: 50%;
    position: relative;
    align-items: center;
    justify-content: center;
    z-index: 100;
    cursor: pointer;
    transform: scale(0.8);
    margin-right: 20px;
}

.hamburger:after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 3px solid var(--white);
    animation: hamburger_puls 1s ease infinite;
}

.hamburger .bar {
    height: 2px;
    width: 30px;
    position: relative;
    background-color: var(--white);
    z-index: -1;
}

.hamburger .bar::after,
.hamburger .bar::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    background-color: var(--white);
    transition: var(--transition-fast);
}

.hamburger .bar::after {
    top: 8px;
}

.hamburger .bar::before {
    bottom: 8px;
}

.hamburger.active .bar::before {
    bottom: 0;
}

.hamburger.active .bar::after {
    top: 0;
}

/* ============ HERO SECTION ============ */
#hero {
    background-image: url(../images/uno.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin-top: 0;
    padding-top: 120px;
    padding-bottom: 80px;
}

#hero::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

#hero .hero.container {
    width: 100%;
    padding: 0 4rem;
    animation: fadeIn 1s ease-out forwards;
}

#hero .hero.container>div {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(3px);
    /* Soporte para Safari */
    backdrop-filter: blur(3px);
    /* Soporte para navegadores modernos */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#hero .hero-subtitle {
    font-size: 2rem;
    color: white;
    margin-bottom: 3rem;
    text-shadow: 0 1px 3px black;
}

#hero h1 {
    display: block;
    font-size: 6rem;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 3rem;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

#hero h1 span {
    position: relative;
    display: inline-block;
    padding: 0 0.5rem;
}

#hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-blue);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

#hero .hero.container>div:hover h1 span::after {
    transform: scaleX(1);
}

#hero .cta-container {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

#hero .cta {
    display: inline-block;
    padding: 2rem 4rem;
    color: var(--white);
    background: var(--blue-gradient);
    border: none;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    transition: all 0.4s ease;
    border-radius: 10px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

#hero .cta:last-child {
    background: transparent;
    border: 2px solid var(--white);
}

#hero .cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-blue);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

#hero .cta:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

#hero .cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}


/* Efecto cursor parpadeante */
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: var(--primary-blue);
    margin-left: 2px;
    vertical-align: middle;
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}
/* ============ SERVICIOS SECTION ============ */
#services {
    background-color: var(--light-gray);
}

#services .service-top {
    max-width: 600px;
    margin: 0 auto 5rem;
    text-align: center;
}

#services .service-top p {
    font-size: 1.6rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

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

.service-item {
    background: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-blue-gradient);
    opacity: 0.9;
    z-index: -1;
}

.service-item .icon {
    height: 80px;
    width: 80px;
    margin: 0 auto 2rem;
}

.service-item h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.service-item p {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.4rem;
    line-height: 1.7;
}

.service-item .cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
}

.service-item .cta:hover {
    background: transparent;
    color: var(--white);
}
/* ============ ESTILOS PARA ICONOS DE SERVICIOS ============ */
.service-item .icon {
    height: 80px;
    width: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
    position: relative;
    background: rgba(255, 255, 255, 0.1);
}

/* Efecto hover para el contenedor del icono */
.service-item:hover .icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Colores personalizados para cada icono */
.service-item:nth-child(1) .icon {
    /* Landing Pages */
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.service-item:nth-child(2) .icon {
    /* Tiendas Online */
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.service-item:nth-child(3) .icon {
    /* Web Responsive */
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
}

.service-item:nth-child(4) .icon {
    /* SEO */
    background: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
}

.service-item:nth-child(5) .icon {
    /* Mantenimiento */
    background: rgba(230, 126, 34, 0.1);
    color: #e67e22;
}

.service-item:nth-child(6) .icon {
    /* Hosting */
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

/* Efecto hover para el SVG */
.service-item .icon svg {
    transition: all var(--transition-fast);
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.service-item:hover .icon svg {
    transform: rotate(10deg) scale(1.1);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

/* Efecto de onda al hacer hover */
.service-item .icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: currentColor;
    opacity: 0;
    z-index: -1;
    transform: scale(0.8);
    transition: all var(--transition-medium);
}

.service-item:hover .icon::after {
    opacity: 0.1;
    transform: scale(1.5);
}

/* Animación de pulso para iconos */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.service-item:hover .icon {
    animation: pulse 1.5s ease infinite;
}
/* ============ PORTFOLIO SECTION ============ */
#portfolio {
    background-color: var(--white);
}

.portfolio-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.portfolio-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
}

.portfolio-item:hover {
    transform: translateY(-1rem);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(41, 128, 185, 0.9);
    color: var(--white);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(100%);
    transition: transform var(--transition-fast);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.portfolio-overlay p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.portfolio-overlay .cta {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 4px;
}

.portfolio-overlay .cta:hover {
    background: var(--dark-blue);
    color: var(--white);
}

/* ============ TESTIMONIOS SECTION ============ */
#testimonials {
    background-color: var(--light-gray);
}

.testimonial-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.testimonial-item {
    background: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
    position: relative;
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

.testimonial-item h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.testimonial-item p.position {
    font-style: normal;
    color: var(--dark-gray);
    font-size: 1.4rem;
}

/* ============ PROCESO SECTION ============ */
.process-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/process-bg.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.03;
    z-index: 0;
}

.section-subtitle {
    font-size: 1.8rem;
    color: var(--dark-gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 6rem;
    line-height: 1.6;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    margin: 8rem 0;
    z-index: 1;
}

.process-step {
    flex: 0 0 calc(25% - 3rem);
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
}

.step-header {
    position: relative;
    margin-bottom: 2.5rem;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--blue-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: bold;
    font-size: 2.4rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
    transition: all var(--transition-fast);
}

.step-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.step-content {
    padding: 0 1.5rem;
}

.process-step h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--deep-blue);
    position: relative;
    padding-bottom: 1rem;
}

.process-step h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-blue);
}

.process-step p {
    font-size: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

.step-connector {
    position: absolute;
    top: 35px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--medium-gray);
    z-index: -1;
}

.process-guarantee {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 4rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
    max-width: 800px;
    margin: 5rem auto 0;
    transition: all var(--transition-fast);
}

.process-guarantee:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.guarantee-icon {
    flex: 0 0 80px;
    height: 80px;
    background: var(--light-blue-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-right: 3rem;
}

.guarantee-content h3 {
    font-size: 2.2rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.guarantee-content p {
    font-size: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ============ BENEFICIOS SECTION ============ */
#benefits {
    background-color: var(--light-gray);
    padding: 8rem 0;
}

.benefit-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.benefit-item {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 1rem;
    transition: all var(--transition-fast);
    background: var(--white);
    box-shadow: var(--shadow-light);
}

.benefit-item:hover {
    transform: translateY(-1rem);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    color: var(--primary-blue);
    font-size: 3.5rem;
    margin-bottom: 2rem;
    transition: var(--transition-fast);
}

.benefit-item:hover .benefit-icon {
    color: var(--teal-blue);
    animation: pulse 0.5s ease;
}

.benefit-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--deep-blue);
}

.benefit-item p {
    font-size: 1.4rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/* ============ PRECIOS SECTION ============ */
#pricing {
    background-color: var(--white);
    padding: 8rem 0;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.pricing-plan {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--medium-gray);
}

.pricing-plan:hover {
    transform: translateY(-1rem);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-blue);
}

/* Estilo mejorado para el plan popular */
.pricing-plan.popular {
    border: 2px solid var(--teal-blue);
}

.pricing-plan.popular::before {
    content: 'Más Popular';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--teal-blue);
    color: var(--white);
    padding: 0.5rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 1;
    box-shadow: var(--shadow-medium);
}

/* Estilo para el badge personalizado */
.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--blue-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: var(--shadow-light);
}

.pricing-plan h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--deep-blue);
    position: relative;
    padding-bottom: 1rem;
}

.pricing-plan h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--teal-blue);
}

.price {
    font-size: 3rem;
    font-weight: bold;
    margin: 2rem 0;
    color: var(--primary-blue);
}

.equivalent {
    font-size: 1.4rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.pricing-plan ul {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
    text-align: left;
}

.pricing-plan ul li {
    padding: 1rem 0;
    position: relative;
    padding-left: 3rem;
    font-size: 1.4rem;
    color: var(--dark-gray);
    border-bottom: 1px dashed var(--medium-gray);
}

.pricing-plan ul li:last-child {
    border-bottom: none;
}

.pricing-plan ul li i.fa-check {
    color: var(--teal-blue);
    position: absolute;
    left: 0;
    font-size: 1.6rem;
}

.pricing-plan ul li i.fa-times {
    color: #e74c3c;
    position: absolute;
    left: 0;
}

.excluded {
    text-decoration: line-through;
    opacity: 0.7;
}

.pricing-plan .cta {
    display: inline-block;
    width: 100%;
    padding: 1.5rem;
    background: var(--blue-gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.5rem;
    transition: var(--transition-fast);
    margin-top: 1rem;
}

.pricing-plan.popular .cta {
    background: var(--teal-blue);
    box-shadow: 0 5px 15px rgba(26, 188, 156, 0.3);
}

.pricing-plan .cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}

.pricing-footer {
    text-align: center;
    margin-top: 6rem;
    font-size: 1.4rem;
    color: var(--dark-gray);
}

.cta-outline {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.2rem 3rem;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 50px;
    font-weight: bold;
    transition: var(--transition-fast);
}

.cta-outline:hover {
    background: var(--primary-blue);
    color: white;
}

/* ============ CONTACTO SECTION ============ */
#contact {
    background-color: var(--light-gray);
}

.contact-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.contact-item {
    background: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all var(--transition-fast);
}

.contact-item:hover {
    transform: translateY(-1rem);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-item .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 2rem;
}

.contact-item h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

.contact-item h2 {
    font-size: 1.4rem;
    color: var(--dark-gray);
}

.contact-item h2 a {
    color: var(--primary-blue);
    transition: var(--transition-fast);
}

.contact-item h2 a:hover {
    text-decoration: underline;
}

.contact-form {
    max-width: 800px;
    margin: 5rem auto 0;
    background: var(--white);
    padding: 4rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--deep-blue);
    font-size: 2.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid var(--medium-gray);
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-family: 'Chakra Petch', sans-serif;
    transition: border var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

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

.contact-form button[type="submit"] {
    width: 100%;
    padding: 1.5rem;
    background: var(--blue-gradient);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-family: 'Chakra Petch', sans-serif;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-weight: bold;
}

.contact-form button[type="submit"]:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ============ FOOTER SECTION ============ */
#footer {
    background: var(--dark-blue-gradient);
    color: var(--white);
}

#footer .footer {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 2rem;
    text-align: center;
}

#footer h1 {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

#footer h1 span {
    background: var(--light-blue-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#footer h2 {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

.social-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.social-item {
    height: 50px;
    width: 50px;
    margin: 0 1rem;
    transition: var(--transition-fast);
}

.social-item img {
    filter: grayscale(1);
    transition: var(--transition-fast);
}

.social-item:hover {
    transform: translateY(-5px);
}

.social-item:hover img {
    filter: grayscale(0);
}

#footer p {
    font-size: 1.4rem;
    color: var(--white);
}

/* ============ ANIMACIONES ============ */
@keyframes hamburger_puls {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.4);
    }
}

@keyframes text_reveal_box {
    50% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 0;
        left: 100%;
    }
}

@keyframes text_reveal {
    100% {
        color: var(--white);
    }
}

@keyframes text_reveal_name {
    100% {
        background: var(--blue-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-weight: 500;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* ============ ACERCA DE MI SECTION ============ */
#about {
    background-color: var(--white);
    padding: 10rem 0;
    position: relative;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 6rem;
}

.col-left {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
}

.about-img {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transition: var(--transition-medium);
    position: relative;
    z-index: 1;
}

.about-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--blue-gradient);
    opacity: 0.1;
    z-index: -1;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-medium);
    transform: scale(1.03);
}

.about-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-img:hover img {
    transform: scale(1.05);
}

.col-right {
    flex: 1;
    min-width: 300px;
}

.col-right h1.section-title {
    font-size: 3.8rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    text-align: left;
    position: relative;
    display: inline-block;
    color: var(--deep-blue);
}

.col-right h1.section-title span {
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.col-right h2 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    color: var(--dark-gray);
    font-weight: 500;
    line-height: 1.4;
}

.col-right h2 span {
    color: var(--primary-blue);
    font-weight: 600;
}

.col-right p {
    font-size: 1.7rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: var(--dark-gray);
    position: relative;
    padding-left: 3rem;
}

.col-right p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8em;
    height: 3px;
    width: 20px;
    background: var(--primary-blue);
    border-radius: 3px;
}

.col-right em {
    font-style: italic;
    color: var(--deep-blue);
    display: block;
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: rgba(52, 152, 219, 0.05);
    border-left: 4px solid var(--primary-blue);
    font-size: 1.6rem;
    line-height: 1.7;
    border-radius: 0 5px 5px 0;
}

.about-cta {
    margin-top: 3.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.6rem 3.5rem;
    background: var(--blue-gradient);
    color: var(--white);
    border-radius: 0.6rem;
    font-size: 1.6rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(41, 128, 185, 0.3);
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-blue-gradient);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.cta:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(41, 128, 185, 0.4);
}

/* Estilos para el Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.contenido-modal {
    background-color: var(--white);
    border-radius: 1rem;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.4s ease forwards;
}

.modal-header {
    padding: 2rem;
    background: var(--blue-gradient);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 2.2rem;
    margin: 0;
}

.modal-header h2 span {
    color: var(--teal-blue);
}

.close-modal {
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
}

.close-modal:hover {
    color: var(--teal-blue);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    max-height: 70vh;
}

.pdf-container {
    position: relative;
    padding-bottom: 141.42%;
    /* Proporción para tamaño A4 (sqrt(2)) */
    height: 0;
    overflow: hidden;
}

.pdf-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.modal-footer {
    padding: 1.5rem;
    text-align: center;
    background-color: var(--light-gray);
}

.modal-footer h2 {
    font-size: 1.8rem;
    margin: 0;
}

.modal-footer h2 span {
    color: var(--primary-blue);
}
/* ============ LOADER ============ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-blue-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
    text-align: center;
    color: var(--white);
}

.loader-spinner {
    width: 80px;
    height: 80px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    margin: 0 auto 20px;
    animation: spin 1s ease-in-out infinite;
}

.loader h3 {
    font-size: 2rem;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--light-blue-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}
.benefit-item img {
    /* Reemplaza esto con: */
    display: none;
    /* Oculta la imagen si existe */
}
 /*
.benefit-item::before {
    content: "\f017";
    Código del icono de reloj 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: block;
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}*/
/* Estilos para la sección de precios */
.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.pricing-plan {
    background: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    position: relative;
    border: 2px solid transparent;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.pricing-plan.popular {
    border-color: var(--teal-blue);
}

.pricing-plan.enterprise {
    border-color: var(--deep-blue);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--teal-blue);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin: 1.5rem 0 0.5rem;
}

.equivalent {
    font-size: 1.4rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.pricing-plan ul {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.pricing-plan ul li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 3rem;
    font-size: 1.4rem;
    color: var(--dark-gray);
    border-bottom: 1px dashed #eee;
}

.pricing-plan ul li:last-child {
    border-bottom: none;
}

.pricing-plan ul li i {
    color: var(--teal-blue);
    position: absolute;
    left: 0;
}

.pricing-footer {
    text-align: center;
    margin-top: 5rem;
    padding: 2rem;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 1rem;
}

.pricing-footer p {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.cta-outline {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 0.5rem;
    font-weight: bold;
    transition: all var(--transition-fast);
}

.cta-outline:hover {
    background: var(--primary-blue);
    color: white;
}

/* ============ EXPERIENCIA SECTION ============ */
#experience {
    background-color: var(--light-gray);
    padding: 8rem 0;
}

.experience-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.skill-category {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.skill-category h3 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}

.skill-category h3 i {
    margin-right: 12px;
    font-size: 1.4em;
    color: var(--primary-blue);
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skills span {
    background: #eef7ff;
    color: var(--dark-blue);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    transition: all var(--transition-fast);
}

.skills span:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.05);
}

.skills span i {
    margin-right: 8px;
    font-size: 1.3em;
    transition: transform var(--transition-fast);
}

.skills span:hover i {
    transform: scale(1.2);
}

.work-history {
    background: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.work-history h3 {
    color: var(--deep-blue);
    margin-bottom: 2rem;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-history p {
    font-size: 1.6rem;
    color: #555;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-history h3 i,
.work-history p i {
    margin-right: 12px;
    color: var(--primary-blue);
}

/* Recursos */
#resources {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

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

.resource-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-10px);
}

.resource-item i {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.resource-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--deep-blue);
}

.resource-item p {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Testimonios mejorados */
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
    color: var(--deep-blue);
}

.client-info p {
    font-size: 1.4rem;
    color: #666;
}

.rating {
    color: #f1c40f;
    margin-top: 1.5rem;
}

/* Portfolio mejorado */
.portfolio-top {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.portfolio-top p {
    font-size: 1.6rem;
    color: var(--dark-gray);
}
/* Estilos para las nuevas secciones */
#expertise {
    background-color: var(--white);
    padding: 8rem 0;
}

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

.expertise-item {
    background: var(--light-gray);
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all var(--transition-fast);
}

.expertise-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.expertise-item i {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.expertise-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--deep-blue);
}

/* Estilos para FAQ */
#faq {
    background-color: var(--light-gray);
    padding: 8rem 0;
}

.faq-grid {
    max-width: 800px;
    margin: 5rem auto 0;
}

.faq-item {
    background: var(--white);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
}

.faq-item h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.faq-item h3 i {
    margin-right: 1rem;
}

.faq-cta {
    text-align: center;
    margin-top: 5rem;
}

/* Estilos para consultoría */
#consultation {
    padding: 8rem 0;
    background: var(--blue-gradient);
    color: white;
}

.consultation-box {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.consultation-content {
    padding: 4rem;
    color: var(--deep-blue);
}

.consultation-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.consultation-content h2 span {
    color: var(--primary-blue);
}

.consultation-content ul {
    margin-top: 2rem;
    list-style: none;
}

.consultation-content ul li {
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.consultation-content ul li i {
    color: var(--teal-blue);
    margin-right: 1rem;
}

.consultation-form {
    padding: 4rem;
    background: var(--light-gray);
}
/* Estilos mejorados para el menú desplegable */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--deep-blue);
    width: 200px;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast) 0.1s;
    z-index: 100;
    padding: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    color: var(--white) !important;
    font-size: 1.4rem !important;
    padding: 0.8rem 1.5rem !important;
    display: block;
    transition: var(--transition-fast);
    position: relative;
}

.dropdown-menu a:hover {
    color: var(--primary-blue) !important;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 2rem !important;
}

.dropdown-menu a::after {
    content: none !important;
}
/* ============ MEDIA QUERIES ============ */
@media (max-width: 1200px) {
    .about-container {
        gap: 4rem;
    }

    .col-right h1.section-title {
        font-size: 3.5rem;
    }

    .col-right h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-list ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--deep-blue);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: var(--transition-medium);
    }

    .nav-list ul.active {
        left: 0;
    }

    .nav-list li {
        margin: 2rem 0;
    }

    .section-title {
        font-size: 3.5rem;
    }

    #hero h1 {
        font-size: 4.5rem;
    }

    #hero .cta {
        padding: 1.8rem 3rem;
        font-size: 1.6rem;
    }

    #about {
        padding: 8rem 0;
    }

    .col-right h1.section-title {
        font-size: 3.2rem;
    }

    .col-right h2 {
        font-size: 2rem;
    }

    .col-right p {
        font-size: 1.6rem;
    }

    .cta {
        padding: 1.5rem 3rem;
    }

    .process-step {
        flex: 0 0 calc(50% - 2rem);
        margin-bottom: 5rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .process-guarantee {
        flex-direction: column;
        text-align: center;
        padding: 3rem;
    }
    
    .guarantee-icon {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .benefit-items {
        gap: 2.5rem;
    }
    
    .benefit-item {
        padding: 2.5rem 1.5rem;
    }
    
    .benefit-icon {
        font-size: 3rem;
    }
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-fast);
        border: none;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
        margin-top: 1rem;
    }

    .dropdown-menu li {
        padding: 0.5rem 0 0.5rem 3rem;
        border-left: 2px solid var(--primary-blue);
    }

    .dropdown-menu a:hover {
        padding-left: 3.5rem !important;
    }
    
}

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

    #hero {
        min-height: 700px;
        padding-top: 100px;
        text-align: center;
    }

    #hero .hero.container {
        padding: 0 3rem;
    }

    #hero .hero.container>div {
        padding: 4rem 2rem;
    }

    #hero h1 {
        font-size: 3.8rem;
        margin-bottom: 2rem;
    }

    #hero .cta-container {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    #hero .cta {
        width: 100%;
    }

    .portfolio-items,
    .testimonial-items,
    .process-steps,
    .benefit-items,
    .pricing-plans {
        grid-template-columns: 1fr;
    }

    .pricing-plans {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-plan.popular::before {
        right: -30px;
        padding: 0.5rem 2.5rem;
    }

    .contact-form {
        padding: 3rem;
    }

    #about {
        padding: 7rem 0;
    }

    .about-container {
        flex-direction: column;
        gap: 4rem;
    }

    .col-left,
    .col-right {
        width: 100%;
        max-width: 100%;
    }

    .col-right h1.section-title {
        font-size: 3rem;
        text-align: center;
    }

    .col-right h1.section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .col-right h2 {
        font-size: 2rem;
        text-align: center;
    }

    .col-right p {
        text-align: center;
        padding-left: 0;
    }

    .col-right p::before {
        display: none;
    }

    .col-right em {
        text-align: center;
        padding: 1.5rem;
    }

    .about-cta {
        justify-content: center;
    }

    .contenido-modal {
        width: 95%;
    }

    .modal-head h2 {
        font-size: 2rem;
    }

    .process-step {
        flex: 0 0 100%;
        margin-bottom: 4rem;
    }

    .section-subtitle {
        font-size: 1.6rem;
        margin-bottom: 4rem;
    }

    .process-guarantee {
        padding: 2.5rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .skills span {
        padding: 0.7rem 1.2rem;
        font-size: 1.3rem;
    }

    .work-history {
        padding: 2.5rem 1.5rem;
    }

    .work-history h3 {
        font-size: 1.8rem;
    }

    .work-history p {
        font-size: 1.5rem;
    }

    .consultation-box {
        grid-template-columns: 1fr;
    }

    #benefits {
        padding: 6rem 0;
    }

    .benefit-items {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
    }

    .benefit-item h3 {
        font-size: 1.7rem;
    }

    .benefit-item p {
        font-size: 1.3rem;
    }
}

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

    #hero {
        min-height: 600px;
        padding-top: 80px;
    }

    #hero h1 {
        font-size: 3rem;
    }

    #hero .hero.container>div {
        padding: 3rem 1.5rem;
    }

    #hero .cta {
        padding: 1.5rem;
        font-size: 1.4rem;
    }

    .brand h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .hamburger {
        height: 50px;
        width: 50px;
        margin-right: 10px;
    }

    #about {
        padding: 6rem 0;
    }

    .col-right h1.section-title {
        font-size: 2.6rem;
    }

    .col-right h2 {
        font-size: 1.8rem;
    }

    .col-right p {
        font-size: 1.5rem;
    }

    .col-right em {
        font-size: 1.4rem;
        padding: 1.2rem;
    }

    .about-cta {
        flex-direction: column;
    }

    .cta {
        width: 100%;
        padding: 1.4rem;
    }

    .modal-head {
        padding: 1.5rem;
    }

    .modal-head h2 {
        font-size: 1.8rem;
    }

    .close {
        font-size: 3rem;
    }

    .process-step h3 {
        font-size: 1.8rem;
    }

    .process-step p {
        font-size: 1.4rem;
    }

    .guarantee-content h3 {
        font-size: 2rem;
    }

    .guarantee-content p {
        font-size: 1.4rem;
    }

    .benefit-items {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .benefit-icon {
        font-size: 2.8rem;
    }

    .benefit-item h3 {
        font-size: 1.6rem;
    }

    /* Estilos específicos para pricing en móviles */
    .pricing-plan {
        padding: 3rem 2rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .pricing-plan.popular::before {
        font-size: 1rem;
        right: -25px;
        padding: 0.5rem 2rem;
    }

    .pricing-footer {
        padding: 0 2rem;
    }

    .cta-outline {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .col-right h1.section-title {
        font-size: 2.4rem;
    }

    .col-right h2 {
        font-size: 1.7rem;
    }

    .modal-head h2 {
        font-size: 1.6rem;
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}