/* ==========================================
   MÁS LEADS - Agencia de Marketing Digital
   Manual de Marca Implementation
   ========================================== */

/* === VARIABLES CSS === */
:root {
    /* Colores Corporativos */
    --azul-profundo: #213141;
    --azul-leads: #06AFF3;
    --blanco: #ffffff;
    --gris-claro: #f5f7fa;
    --gris-medio: #8892a0;
    --gris-oscuro: #424242;
    
    /* Tipografía */
    --font-family: 'Catamaran', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(6, 175, 243, 0.1);
    --shadow-md: 0 4px 16px rgba(6, 175, 243, 0.15);
    --shadow-lg: 0 8px 32px rgba(6, 175, 243, 0.2);
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 1.6;
    color: var(--blanco);
    background-color: var(--azul-profundo);
    overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.highlight {
    color: var(--azul-leads);
}

/* Reducir tamaño de la primera línea del hero */
.hero-title .main-line {
    font-size: clamp(2rem, 5vw, 4rem);
}

/* Reducir tamaño de la línea de agencia en el hero para que quepa en una línea */
.hero-title .agency-line {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    letter-spacing: 0.5px;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: none;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(33, 49, 65, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: none;
}

.header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
    padding: 1.5rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--azul-profundo);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo:hover {
    opacity: 0.9;
}

.logo-image {
    height: 110px !important;
    width: auto;
    transition: none;
}

.logo:hover .logo-image {
    transform: scale(1.02);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.logo-tagline {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--azul-leads);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-left: 2px;
}

.logo-owl {
    transition: var(--transition-normal);
}

.logo:hover .logo-owl {
    transform: scale(1.1) rotate(5deg);
}

/* === NAVIGATION === */
.nav-list {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav-link {
    color: var(--azul-profundo);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.45rem;
    letter-spacing: 0.2px;
    position: relative;
    transition: color 0.2s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--azul-leads);
    transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--azul-leads);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: -1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(33, 49, 65, 0.12);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: var(--azul-profundo);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(6, 175, 243, 0.06);
    color: var(--azul-leads);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 5px;  /* Aumentado de 3px a 5px para mejor proporción */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;  /* Aumentado padding para área táctil más grande */
}

.mobile-toggle span {
    width: 30px;  /* Aumentado de 28px a 30px */
    height: 3px;
    background: var(--azul-profundo);
    transition: var(--transition-normal);
    border-radius: 2px;
}

.mobile-toggle::after {
    content: 'Menu';
    font-size: 1rem;  /* Aumentado de 0.75rem a 1rem */
    color: var(--azul-profundo);
    font-weight: 700;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

@media (max-width: 968px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(33, 49, 65, 0.98);
        padding: 2rem;
        transform: translateX(-100%);
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    /* Hacer los enlaces visibles en móvil con texto blanco */
    .nav-link {
        color: #ffffff;
        font-size: 1.3rem;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--azul-leads);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        margin-left: 1rem;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.85);
        font-size: 1.1rem;
    }
    
    .dropdown-menu a:hover {
        color: var(--azul-leads);
        background: rgba(6, 175, 243, 0.1);
    }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--azul-leads);
    color: var(--azul-profundo);
}

.btn-primary:hover {
    background: #05a0e0;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--blanco);
    border-color: var(--azul-leads);
}

.btn-secondary:hover {
    background: var(--azul-leads);
    color: var(--azul-profundo);
    transform: translateY(-3px);
}

.btn-link {
    color: var(--azul-leads);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.btn-link:hover {
    gap: 1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.contacto-form .btn-block {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 12rem 0 4rem;
    overflow: hidden;
}

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

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-owl {
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

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

/* Corporate emblem animations */
@keyframes subtle-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.02);
    }
}

@keyframes rotate-circle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-circle-reverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.3;
        filter: drop-shadow(0 0 5px rgba(6, 175, 243, 0.3));
    }
    50% {
        opacity: 0.5;
        filter: drop-shadow(0 0 15px rgba(6, 175, 243, 0.6));
    }
}

@keyframes wing-subtle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Aplicar animaciones al emblema */
.owl-emblem {
    /* Sin animación de float, solo círculos internos */
}

.rotating-circle {
    transform-origin: center;
    animation: rotate-circle 20s linear infinite;
}

.rotating-circle-reverse {
    transform-origin: center;
    animation: rotate-circle-reverse 15s linear infinite;
}

.emblem-circle {
    animation: pulse-glow 3s ease-in-out infinite;
}

.wing-left-emblem,
.wing-right-emblem {
    animation: wing-subtle 2s ease-in-out infinite;
}

.wing-left-emblem {
    transform-origin: 72px 108px;
    animation-delay: 0s;
}

.wing-right-emblem {
    transform-origin: 128px 108px;
    animation-delay: 1s;
}

.ear-left, .ear-right {
    animation: wing-subtle 3s ease-in-out infinite;
}

.ear-left {
    animation-delay: 0.5s;
}

.ear-right {
    animation-delay: 1.5s;
}

.hero-title {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column-reverse;  /* Invertir orden: mostrar primero agency-line en desktop */
}

/* En móvil, usar orden normal del HTML */
@media (max-width: 768px) {
    .hero-title {
        flex-direction: column;  /* Orden normal: main-line primero */
    }
}

.title-line {
    display: block;
    animation: slideIn 0.8s ease-out backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-agency-mobile {
    display: none;  /* Oculto en desktop, solo visible en móvil */
}

.typing-text {
    overflow: hidden;
    border-right: 2px solid var(--azul-leads);
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3s steps(50) 1s forwards, blink 0.75s step-end infinite;
    max-width: fit-content;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--azul-leads);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.owl-eye-blink {
    width: 30px;
    height: 30px;
    border: 2px solid var(--azul-leads);
    border-radius: 50%;
    position: relative;
}

.owl-eye-blink::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--azul-leads);
    border-radius: 50%;
    animation: eyeBlink 4s infinite;
}

@keyframes eyeBlink {
    0%, 96%, 100% {
        height: 10px;
    }
    98% {
        height: 2px;
    }
}

/* Owl Eyes Animation */
.owl-eye-left, .owl-eye-right {
    animation: eyeMove 3s ease-in-out infinite;
}

@keyframes eyeMove {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-2px);
    }
    75% {
        transform: translateX(2px);
    }
}

/* === SECTIONS === */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    color: var(--azul-leads);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* === FILOSOFIA SECTION === */
.filosofia {
    background: linear-gradient(180deg, var(--azul-profundo) 0%, #1a2835 100%);
}

.filosofia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

@media (max-width: 968px) {
    .filosofia-content {
        grid-template-columns: 1fr;
    }
    
    .filosofia-visual {
        order: -1;
    }
}

.pilares {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.pilar {
    position: relative;
    padding-left: 4rem;
}

.pilar::before {
    content: attr(data-number);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--azul-leads);
    opacity: 0.3;
}

.pilar-icon {
    width: 50px;
    height: 50px;
    background: rgba(6, 175, 243, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--azul-leads);
    font-size: 1.5rem;
}

.pilar h3 {
    color: var(--azul-leads);
    margin-bottom: 0.5rem;
}

.pilar p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.pilar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--azul-leads);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-fast);
    margin-top: 0.5rem;
}

.pilar-link:hover {
    gap: 0.75rem;
    opacity: 0.8;
}

.pilar-link i {
    font-size: 0.85rem;
}

/* Estrategia CTA Box */
.estrategia-cta {
    margin-top: 3rem;
}

.cta-box {
    background: linear-gradient(135deg, rgba(6, 175, 243, 0.15) 0%, rgba(6, 175, 243, 0.05) 100%);
    border: 2px solid rgba(6, 175, 243, 0.3);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: var(--transition-normal);
}

.cta-box:hover {
    border-color: var(--azul-leads);
    background: linear-gradient(135deg, rgba(6, 175, 243, 0.2) 0%, rgba(6, 175, 243, 0.1) 100%);
}

.cta-icon {
    font-size: 2.5rem;
    color: var(--azul-leads);
    min-width: 60px;
}

.cta-content-box h4 {
    color: var(--azul-leads);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.cta-content-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.btn-sm {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.95rem !important;
}

/* Servicios Visual Grid */
.servicios-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.visual-card {
    background: linear-gradient(135deg, rgba(6, 175, 243, 0.1) 0%, rgba(33, 49, 65, 0.2) 100%);
    border: 2px solid rgba(6, 175, 243, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-normal);
}

.visual-card:hover {
    transform: translateY(-5px);
    border-color: var(--azul-leads);
    box-shadow: 0 8px 24px rgba(6, 175, 243, 0.2);
}

.visual-card.highlight-card {
    background: linear-gradient(135deg, rgba(6, 175, 243, 0.2) 0%, rgba(6, 175, 243, 0.1) 100%);
    border-color: var(--azul-leads);
}

.visual-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--azul-leads);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.visual-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

.visual-icon {
    font-size: 2.5rem;
    color: var(--azul-leads);
    margin-bottom: 0.5rem;
}

.visual-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--azul-leads);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.visual-link:hover {
    opacity: 0.8;
}

/* Propuesta de Valor Compacta */
.propuesta-valor-compacta {
    padding: 4rem 0 !important;  /* Reducido de 6rem para menos scroll */
}

.propuesta-compacta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0 2.5rem;
}

@media (max-width: 1024px) {
    .propuesta-compacta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .propuesta-compacta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .propuesta-valor-compacta {
        padding: 3rem 0 !important;
    }
}

.propuesta-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(6, 175, 243, 0.08) 0%, rgba(33, 49, 65, 0.3) 100%);
    border: 2px solid rgba(6, 175, 243, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.propuesta-item:hover {
    transform: translateY(-5px);
    border-color: var(--azul-leads);
    box-shadow: 0 8px 24px rgba(6, 175, 243, 0.2);
    background: linear-gradient(135deg, rgba(6, 175, 243, 0.15) 0%, rgba(33, 49, 65, 0.3) 100%);
}

.propuesta-icon-compact {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(6, 175, 243, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
}

.propuesta-item h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.propuesta-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.btn-link-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--azul-leads);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-link-inline:hover {
    gap: 0.5rem;
    opacity: 0.8;
}

.resultados-destacados {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(6, 175, 243, 0.2);
}

.resultado-badge {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(6, 175, 243, 0.2) 0%, rgba(6, 175, 243, 0.1) 100%);
    border: 2px solid rgba(6, 175, 243, 0.3);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resultado-badge:hover {
    border-color: var(--azul-leads);
    transform: scale(1.05);
}

.resultado-badge strong {
    color: var(--azul-leads);
    font-size: 1.2rem;
    font-weight: 900;
    margin-right: 0.3rem;
}

/* Industrias Preview */
.industrias-preview {
    background: rgba(6, 175, 243, 0.05);
    border: 1px solid rgba(6, 175, 243, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.industrias-preview h4 {
    color: var(--azul-leads);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.industrias-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.industrias-tags .tag {
    background: rgba(6, 175, 243, 0.15);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(6, 175, 243, 0.3);
    transition: var(--transition-fast);
}

.industrias-tags .tag:hover {
    background: rgba(6, 175, 243, 0.25);
    border-color: var(--azul-leads);
}

@media (max-width: 768px) {
    .servicios-visual-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .pilares {
        gap: 2.5rem;
    }
}

/* Growth Path Animation */
.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        r: 8;
    }
    50% {
        opacity: 1;
        r: 12;
    }
}

/* === SERVICIOS / FASES SECTION === */
.servicios {
    background: #ffffff;
    position: relative;
    padding: 6rem 0;
}

/* Estilos para títulos en fondo blanco */
.servicios .section-tag {
    color: var(--azul-leads);
    font-weight: 800;
    font-size: 1.2rem;
}

.servicios .section-title {
    color: var(--azul-profundo);
}

.servicios .section-title .highlight {
    background: linear-gradient(135deg, var(--azul-leads) 0%, #0891d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fases-container {
    position: relative;
}

.fases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.fases-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

@media (max-width: 1200px) {
    .fases-grid,
    .fases-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fases-grid,
    .fases-grid-new {
        grid-template-columns: 1fr;
    }
}

.fase-card {
    /* Tarjetas con fondo oscuro sobre fondo blanco - VERSIÓN MEJORADA */
    background: linear-gradient(135deg, rgba(33, 49, 65, 0.98) 0%, rgba(33, 49, 65, 0.95) 100%);
    border: 3px solid rgba(6, 175, 243, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(33, 49, 65, 0.3);
    position: relative;
    overflow: hidden;
}

.fase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--azul-leads), transparent);
    opacity: 0.5;
}

.fase-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: linear-gradient(135deg, rgba(33, 49, 65, 1) 0%, rgba(6, 175, 243, 0.1) 100%);
    border-color: var(--azul-leads);
    box-shadow: 0 16px 48px rgba(6, 175, 243, 0.4);
}

.fase-card:hover::before {
    opacity: 1;
}

.fase-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.fase-owl {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    height: 0;
    overflow: hidden;
}

.fase-title {
    color: var(--azul-leads);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.fase-description {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-align: center;
}

.fase-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: center;
}

.fase-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.fase-features i {
    color: var(--azul-leads);
    font-size: 0.875rem;
}

/* === CASOS PREVIEW === */
.casos-preview {
    background: var(--azul-profundo);
}

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

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

.caso-card {
    background: rgba(6, 175, 243, 0.05);
    border: 1px solid rgba(6, 175, 243, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition-normal);
}

.caso-card:hover {
    transform: translateY(-5px);
    border-color: var(--azul-leads);
    box-shadow: var(--shadow-lg);
}

.caso-badge {
    display: inline-block;
    background: rgba(6, 175, 243, 0.2);
    color: var(--blanco);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.caso-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--azul-leads);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.caso-title {
    margin-bottom: 1rem;
    color: var(--blanco);
    font-weight: 700;
    font-size: 1.3rem;
}

.caso-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.caso-client {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(6, 175, 243, 0.1);
    margin-bottom: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(6, 175, 243, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azul-leads);
}

.client-name {
    font-weight: 700;
    color: var(--blanco);
}

.client-role {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* === INSIGHTS PREVIEW === */
.insights-preview {
    background: #1a2835;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
}

.insight-card {
    background: rgba(6, 175, 243, 0.05);
    border: 1px solid rgba(6, 175, 243, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.insight-card:hover {
    transform: translateY(-5px);
    border-color: var(--azul-leads);
    box-shadow: var(--shadow-lg);
}

.insight-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
}

.insight-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(6, 175, 243, 0.9);
    color: var(--azul-profundo);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.insight-content {
    padding: 1.5rem;
}

.insight-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.insight-title {
    color: var(--blanco);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.insight-excerpt {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* === CTA FINAL === */
.cta-final {
    background: linear-gradient(180deg, #1a2835 0%, var(--azul-profundo) 100%);
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-owl {
    margin-bottom: 2rem;
}

.glow {
    filter: drop-shadow(0 0 10px var(--azul-leads));
    animation: pulse 2s ease-in-out infinite;
}

.cta-title {
    margin-bottom: 1rem;
    white-space: nowrap;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-form {
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.form-row-spacing {
    margin-top: 1rem;
}

.form-row input,
.form-row textarea {
    flex: 1;
    min-width: 250px;
    max-width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(6, 175, 243, 0.3);
    border-radius: 50px;
    background: rgba(6, 175, 243, 0.05);
    color: var(--blanco);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition-fast);
}

/* Hacer que los inputs tengan ancho fijo similar */
.form-row input {
    width: calc(50% - 0.5rem);
}

.form-row textarea {
    width: calc(50% - 0.5rem);
}

.form-row textarea {
    border-radius: 20px;
    resize: vertical;
    min-height: 80px;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--azul-leads);
    background: rgba(6, 175, 243, 0.1);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.cta-form .btn {
    margin-top: 1rem;
    padding: 1rem 3rem;
}

.cta-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.badge i {
    color: var(--azul-leads);
}

/* === FOOTER === */
.footer {
    background: linear-gradient(180deg, #1a2f3d 0%, var(--azul-profundo) 100%);
    padding: var(--spacing-lg) 0 2rem;
    border-top: 2px solid rgba(6, 175, 243, 0.2);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-brand .footer-logo {
        justify-content: center;
    }
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;  /* Centrar logo en desktop */
}

.footer-logo-image {
    height: 90px !important;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    text-align: center;  /* Centrar descripción en desktop */
}

/* Redes sociales eliminadas del footer */

.footer-col h4 {
    color: var(--azul-leads);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--azul-leads);
    padding-left: 0.5rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(6, 175, 243, 0.3);
    border-radius: 8px;
    background: rgba(6, 175, 243, 0.05);
    color: var(--blanco);
    font-family: var(--font-family);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--azul-leads);
}

.newsletter-form button {
    padding: 0.75rem 1rem;
    background: var(--azul-leads);
    color: var(--azul-profundo);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background: #05a0e0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(6, 175, 243, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--azul-leads);
}

/* === HERO PAGE === */
.hero-page {
    padding: 8rem 0 3rem;
    background: linear-gradient(135deg, #1a2835 0%, #213141 100%);
    text-align: center;
}

@media (max-width: 768px) {
    .hero-page {
        padding: 6rem 0 3rem;
    }
    
    .hero-page-content {
        padding: 0 2rem;
    }
    
    .hero-page-title {
        font-size: clamp(1.8rem, 7vw, 3.5rem);
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .hero-page {
        padding: 6rem 0 2rem;
    }
    
    .hero-page-content {
        padding: 0 1.5rem;
    }
    
    .hero-page-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        line-height: 1.4;
    }
}

.hero-page-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    color: var(--azul-leads);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-page-title {
    margin-bottom: 1.5rem;
    white-space: nowrap;
    text-align: center;
    display: block;
}

.hero-page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.7;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle-destacado {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--blanco);
    line-height: 1.6;
    max-width: 900px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
    margin: 0 auto;
}

.industrias-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .industrias-grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .industrias-grid-4col {
        grid-template-columns: 1fr;
    }
}

/* === CONTACTO PAGE === */
.contacto-page {
    padding: 12rem 0 4rem;
}

.contacto-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contacto-left {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contacto-owl {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.eye-glow {
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

.contacto-title {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contacto-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.contacto-description-destacado {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blanco);
    line-height: 1.5;
    margin-bottom: 2.5rem;
    margin-top: 1.5rem;
}

.contacto-features {
    margin-bottom: 2rem;
}

.contacto-features .feature-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(6, 175, 243, 0.1);
}

.contacto-features .feature-item:last-child {
    border-bottom: none;
}

.contacto-features .feature-item i {
    color: var(--azul-leads);
    font-size: 1.5rem;
}

.contacto-features .feature-item h3 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contacto-features .feature-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contacto-info-centrado {
    align-items: center;
    text-align: center;
}

.contacto-info-centrado .info-item {
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.info-item i {
    color: var(--azul-leads);
    font-size: 1.25rem;
}

.info-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.info-item a:hover {
    color: var(--azul-leads);
}

/* === FORM STYLES === */
.contacto-form,
.contacto-right {
    background: rgba(6, 175, 243, 0.05);
    border: 1px solid rgba(6, 175, 243, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
}

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

.form-header h2 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 2px solid rgba(6, 175, 243, 0.3);
    border-radius: 8px;
    background: rgba(6, 175, 243, 0.05);
    color: var(--blanco);
    font-family: var(--font-family);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--azul-leads);
    background: rgba(6, 175, 243, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
}

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

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--azul-leads);
    text-decoration: underline;
}

.form-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.trust-badge i {
    color: var(--azul-leads);
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .contacto-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contacto-left {
        position: static;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 16px;  /* Aumentado de 14px a 16px para mejor legibilidad (25-65 años) */
    }
    
    /* Asegurar que el header sea visible */
    .header {
        padding: 1.25rem 0 !important;  /* Un poco más de padding */
    }
    
    .header-content {
        padding: 0 1rem;
        min-height: 60px;  /* Altura mínima para el header */
    }
    
    .logo-image {
        height: 80px !important;  /* Aumentado para mayor visibilidad y proporción en móvil */
    }
    
    /* Asegurar que mobile-toggle sea visible */
    .mobile-toggle {
        display: flex !important;
        z-index: 1001;
    }
    
    /* Aumentar tamaños de texto general para mejor legibilidad */
    p {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    h2 {
        font-size: 1.8rem !important;
    }
    
    h3 {
        font-size: 1.4rem !important;
    }
    
    /* Hero optimizado para móvil */
    .hero {
        padding: 9rem 0 3rem;
    }
    
    .hero-content {
        margin-top: 1rem;
    }
    
    /* H1 en móvil: solo mostrar "Más Leads, Más Clientes" */
    .hero-title .agency-line {
        display: none;
    }
    
    .hero-title .main-line {
        font-size: 2.2rem !important;
        line-height: 1.3;
        font-weight: 900;
        word-wrap: break-word;
        max-width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* Mostrar texto de agencia como párrafo en móvil */
    .hero-agency-mobile {
        display: block !important;
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--azul-leads);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
        line-height: 1.6;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        font-size: 1.1rem !important;
        padding: 1.1rem 2rem !important;
        justify-content: center;
    }
}

/* === ESTILOS ESPECÍFICOS PARA PÁGINA NOSOTROS === */
/* Solo se aplican cuando el body tiene clase "page-nosotros" */

body.page-nosotros section .container > div,
body.page-nosotros section p,
body.page-nosotros section h2,
body.page-nosotros section h3,
body.page-nosotros section h4 {
    text-align: center;
}

/* Justificar texto secundario (párrafos dentro de cards/divs) en Nosotros */
body.page-nosotros .pilar p,
body.page-nosotros .pilar-card p {
    text-align: justify;
    text-align-last: center;
}

/* Aumentar tamaño de fuente del texto secundario en Nosotros */
body.page-nosotros .lead {
    font-size: 1.4rem;
    line-height: 1.7;
}

body.page-nosotros .hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.6;
}

/* Aumentar tamaño de párrafos en general en Nosotros */
body.page-nosotros section p:not(.hero-subtitle):not(.lead) {
    font-size: 1.2rem;
    line-height: 1.7;
}

/* Pilares con mejor espaciado y tipografía */
body.page-nosotros .pilar h3,
body.page-nosotros .pilar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

body.page-nosotros .section-title {
    font-size: 2.5rem;
}

body.page-nosotros .section-tag {
    font-size: 1.2rem;
}
    
    .contacto-form,
    .contacto-right {
        padding: 1.5rem;
    }
}
