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

:root {
    --navy: #1a2744;
    --navy-light: #243352;
    --navy-dark: #111b30;
    --gold: #c9a84c;
    --gold-light: #d4b965;
    --gold-dark: #b8943f;
    --white: #ffffff;
    --off-white: #f8f7f4;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --shadow-sm: 0 1px 2px rgba(26, 39, 68, 0.05);
    --shadow: 0 4px 6px -1px rgba(26, 39, 68, 0.08), 0 2px 4px -2px rgba(26, 39, 68, 0.05);
    --shadow-md: 0 10px 25px -3px rgba(26, 39, 68, 0.1), 0 4px 10px -4px rgba(26, 39, 68, 0.06);
    --shadow-lg: 0 20px 50px -12px rgba(26, 39, 68, 0.15);
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.938rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-primary:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 39, 68, 0.06);
    transition: all var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
}

.logo-sub {
    font-size: 0.688rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy);
    background: rgba(26, 39, 68, 0.05);
}

.header-cta {
    display: none;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    text-align: center;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.mobile-nav-link:hover {
    background: rgba(26, 39, 68, 0.05);
    color: var(--gold-dark);
}

.mobile-cta {
    display: inline-flex;
}

/* ===== HERO ===== */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 50%, #f0ede6 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: 
        radial-gradient(circle at 70% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(26, 39, 68, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 20px;
}

.text-gold {
    color: var(--gold);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
}

.hero-stat-label {
    font-size: 0.813rem;
    color: var(--gray-500);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.4;
}

.hero-floating-card {
    position: absolute;
    bottom: 32px;
    left: -24px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

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

.floating-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
}

.floating-card-sub {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ===== SECTION COMMON ===== */
.section-header {
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.063rem;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

/* ===== SERVICIOS ===== */
.servicios {
    padding: 100px 0;
    background: var(--white);
}

.servicios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.servicio-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.servicio-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.servicio-card:hover::before {
    transform: scaleX(1);
}

.servicio-card.featured {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.servicio-card.featured::before {
    background: var(--gold);
}

.servicio-card.featured:hover {
    box-shadow: 0 20px 50px -12px rgba(26, 39, 68, 0.4);
}

.servicio-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 0.688rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.servicio-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.servicio-icon {
    width: 52px;
    height: 52px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
}

.servicio-card.featured .servicio-icon {
    background: rgba(201, 168, 76, 0.2);
    color: var(--gold);
}

.servicio-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
}

.servicio-card.featured .servicio-tag {
    color: rgba(255, 255, 255, 0.5);
}

.servicio-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.servicio-card.featured .servicio-title {
    color: var(--white);
}

.servicio-desc {
    font-size: 0.938rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.servicio-card.featured .servicio-desc {
    color: rgba(255, 255, 255, 0.7);
}

.servicio-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.servicio-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.servicio-card.featured .servicio-features li {
    color: rgba(255, 255, 255, 0.85);
}

/* ===== NOSOTROS ===== */
.nosotros {
    padding: 100px 0;
    background: var(--off-white);
}

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

.nosotros-image-group {
    position: relative;
}

.nosotros-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.nosotros-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.nosotros-img-secondary {
    position: absolute;
    bottom: -24px;
    right: -12px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.nosotros-img-secondary img {
    width: 200px;
    height: 180px;
    object-fit: cover;
}

.nosotros-experience-badge {
    position: absolute;
    top: -20px;
    left: -12px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.exp-label {
    font-size: 0.688rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.nosotros-content-col {
    max-width: 520px;
}

.nosotros-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.nosotros-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.valor {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.valor-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.valor h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.valor p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ===== PROCESO ===== */
.proceso {
    padding: 100px 0;
    background: var(--white);
}

.proceso-timeline {
    max-width: 720px;
    margin: 0 auto;
}

.proceso-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    position: relative;
    padding-bottom: 48px;
}

.proceso-step:last-child {
    padding-bottom: 0;
}

.step-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    display: flex;
    align-items: flex-start;
    padding-top: 4px;
}

.step-line {
    position: absolute;
    top: 28px;
    left: 36px;
    width: 2px;
    height: calc(100% - 16px);
    background: linear-gradient(to bottom, var(--gold), var(--gray-200));
}

.proceso-step:last-child .step-line {
    display: none;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.938rem;
    line-height: 1.7;
    color: var(--gray-500);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.cta-box {
    position: relative;
    z-index: 1;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.063rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* ===== CONTACTO ===== */
.contacto {
    padding: 100px 0;
    background: var(--off-white);
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contacto-info {
    max-width: 520px;
}

.contacto-desc {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contacto-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contacto-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.contacto-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.contacto-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contacto-item-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.contacto-item-value {
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.5;
}

.contacto-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Contact Form */
.contacto-form-col {
    max-width: 520px;
}

.contacto-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.938rem;
    color: var(--gray-500);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.938rem;
    color: var(--gray-800);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    gap: 16px;
}

.form-success.show {
    display: flex;
}

.form-success p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-dark);
    padding: 64px 0 0;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo .logo-main {
    color: var(--white);
}

.footer-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.footer-col h4 {
    font-size: 0.813rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    transition: all var(--transition);
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .servicio-card:last-child:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        justify-self: center;
    }

    .nosotros-img-main img {
        height: 500px;
    }

    .nosotros-img-secondary img {
        width: 240px;
        height: 220px;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }

    .hero-image-wrapper img {
        height: 600px;
    }

    .contacto-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

@media (min-width: 1024px) {
    .header-cta {
        display: inline-flex;
    }

    .mobile-toggle {
        display: none;
    }

    .servicios-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .servicio-card:last-child:nth-child(3) {
        grid-column: auto;
        max-width: none;
        justify-self: auto;
    }

    .nosotros-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }

    .nosotros-img-main img {
        height: 480px;
    }
}

@media (max-width: 639px) {
    .nav {
        display: none;
    }

    .hero-floating-card {
        left: 16px;
        bottom: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contacto-form-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

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