/* ==========================================================================
   CSS Variables & Reset (Premium Corporate - Conformità)
   ========================================================================== */
:root {
    /* Brand Colors */
    --primary: #c2b37b;
    --primary-dark: #a89a66;
    --primary-light: #dfd4ab;
    --text-dark: #141e28;
    --text-light: #52606d;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --bg-darker: #0c1218;
    --border: rgba(20, 30, 40, 0.1);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Layout & Effects */
    --shadow-sm: 0 4px 10px rgba(20, 30, 40, 0.05);
    --shadow-md: 0 10px 30px rgba(20, 30, 40, 0.08);
    --shadow-lg: 0 20px 40px rgba(20, 30, 40, 0.15);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.15;
}

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

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

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

/* ==========================================================================
   Typography & UI Elements
   ========================================================================== */
.eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.eyebrow.gold {
    color: var(--primary);
}

.lead {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.divider {
    height: 2px;
    width: 60px;
    background-color: var(--primary);
    margin: 1.5rem 0;
}

.divider.center {
    margin: 1.5rem auto;
}

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

/* Buttons */
.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--border-radius);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-dark);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--bg-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.site-header.scrolled .btn-outline {
    color: var(--text-dark);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-ghost {
    color: var(--bg-white);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.btn-ghost:hover {
    color: var(--primary);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.link-arrow:hover {
    gap: 0.8rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.scrolled {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    transition: height 0.3s ease;
}

.site-header.scrolled .header-container {
    height: 80px;
}

.logo-wrapper img {
    height: 80px;
    width: auto;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.site-header.scrolled .logo-wrapper img {
    height: 60px;
    filter: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.main-nav a {
    color: var(--bg-white);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.site-header.scrolled .main-nav a {
    color: var(--text-dark);
}

.main-nav a:hover, .main-nav a.active {
    color: var(--primary);
}

.push-right {
    margin-left: auto;
}

.partner-logo img {
    height: 35px;
    filter: brightness(0) invert(1);
}

.site-header.scrolled .partner-logo img {
    filter: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--bg-white);
    cursor: pointer;
    z-index: 1100;
    padding: 8px;
}

.mobile-toggle svg {
    width: 24px;
    height: 24px;
}

.site-header.scrolled .mobile-toggle,
.site-header.menu-open .mobile-toggle {
    color: var(--text-dark);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    background-image: url('imgs/1080x1350oficina1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--bg-white);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(12, 18, 24, 0.95) 0%, rgba(12, 18, 24, 0.7) 50%, rgba(12, 18, 24, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 4rem;
    padding-top: 80px;
}

.hero-eyebrow {
    color: var(--primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
}

.hero-title em {
    font-style: italic;
    color: var(--primary);
}

.hero-divider {
    width: 80px;
    height: 2px;
    background-color: var(--primary);
    margin-bottom: 2rem;
    margin-right: auto;
    margin-left: auto;
    max-width: 250px;
}

.hero-desc {
    font-size: 1.1rem;
    max-width: 550px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hcard {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.hcard:hover {
    transform: translateX(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.hcard-num {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1;
}

.hcard-text h4 {
    color: var(--bg-white);
    margin-bottom: 0.25rem;
}

.hcard-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Section: Process
   ========================================================================== */
.section-process {
    padding: 8rem 0;
    background-color: #f8f7f2;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.process-card {
    padding: 3rem 2rem;
    border-right: 1px solid var(--border);
    transition: var(--transition);
}

.process-card:last-child { border-right: none; }

.process-card:hover {
    background-color: var(--bg-light);
}

.process-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1;
}

.process-divider {
    width: 30px;
    height: 2px;
    background-color: var(--primary);
    margin-bottom: 2rem;
}

.process-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.process-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ==========================================================================
   Section: Quote
   ========================================================================== */
.section-quote {
    padding: 6rem 0;
    background: var(--bg-white);
}

.editorial-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.editorial-quote p {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.editorial-quote cite {
    font-family: var(--font-body);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--primary-dark);
}

/* ==========================================================================
   Section: Areas
   ========================================================================== */
.section-areas {
    padding: 8rem 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
}

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

.area-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.area-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.area-icon svg { width: 24px; height: 24px; }

.area-card h3 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.area-card ul {
    list-style: none;
}

.area-card li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.2rem;
}

.area-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ==========================================================================
   Section: Advantages & Compliance
   ========================================================================== */
.section-advantages {
    padding: 8rem 0;
    background: var(--bg-white);
}

.compliance-sec {
    margin-bottom: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid var(--border);
}

.compliance-title {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.compliance-card {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
}

.compliance-card h3 {
    margin-bottom: 1rem;
}

.compliance-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.advantages-header {
    margin-bottom: 4rem;
}

.advantages-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.advantage-item {
    position: relative;
    padding-top: 2rem;
}

.advantage-number {
    position: absolute;
    top: 0; left: 0;
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 0;
    color: rgba(194, 179, 123, 0.15);
    z-index: 1;
}

.advantage-content {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.advantage-content h3 { margin-bottom: 1rem; }

/* ==========================================================================
   Section: Canal
   ========================================================================== */
.section-canal {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.canal-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--text-dark);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.canal-text {
    padding: 5rem;
    color: var(--bg-white);
}

.canal-text h2 {
    color: var(--bg-white);
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.canal-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.canal-btns {
    display: flex;
    gap: 1rem;
}

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

/* ==========================================================================
   Section: Forms
   ========================================================================== */
.section-form {
    padding: 8rem 0;
    background-color: var(--bg-white);
}

.form-wrapper {
    max-width: 750px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

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

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--text-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--bg-light);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

/* ==========================================================================
   Modals
   ========================================================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.active { display: flex; }

.modal-container {
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 16px;
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
}

/* Custom Modal Scrollbar */
.modal-container::-webkit-scrollbar {
    width: 6px;
}

.modal-container::-webkit-scrollbar-track {
    background: transparent;
}

.modal-container::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary);
}

.modal-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: none; border: none;
    font-size: 2.5rem; color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--bg-darker);
    color: var(--bg-white);
    padding: 8rem 0 4rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    margin-bottom: 4rem;
}

.logo-wrapper-footer img {
    height: 70px;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.footer-column h3 {
    color: var(--bg-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.contact-list, .locations-list {
    list-style: none;
}

.contact-list li, .locations-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.contact-list svg, .locations-list svg {
    color: var(--primary);
    flex-shrink: 0;
}

.locations-list span {
    display: block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.locations-list div {
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* ==========================================================================
   Utilities & Floating Buttons
   ========================================================================== */
.float-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.float-wa:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.scroll-to-top {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   Section: About & Team Layout (Sobre nosotros)
   ========================================================================== */
.about-team-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    align-items: stretch;
}

.vertical-divider {
    width: 2px;
    background-color: var(--primary);
    height: 100%;
    max-height: 400px;
    align-self: center;
}

.about-content, .team-sidebar {
    padding: 0 1rem;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.team-sidebar .section-header {
    margin-bottom: 3rem;
}

.team-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.team-mini-grid .team-card {
    padding: 2.5rem 2rem;
    text-align: center;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-mini-grid .team-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary);
    display: block;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.team-mini-grid .team-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.team-mini-grid .team-card p {
    font-size: 0.8rem;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .about-team-grid { grid-template-columns: 1fr; gap: 4rem; }
    .vertical-divider { display: none; }
}

/* Section: Team (Old) */
.page-header {
    background-color: var(--text-dark);
    padding-top: 150px;
    padding-bottom: 80px;
    position: relative;
    color: white !important;
}

.page-header .hero-title, .page-header .hero-desc, .page-header p, .page-header h1 {
    color: white !important;
}

.page-header.hero-compact {
    height: auto;
    min-height: 400px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-title { font-size: 4.5rem; }
    .main-nav ul { gap: 0.5rem; }
    .main-nav a { font-size: 0.7rem; }
    .footer-top { gap: 3rem; }
}

@media (max-width: 1024px) {
    .hero { background-attachment: scroll; }
    
    .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 20px; gap: 2rem; }
    .hero-desc { font-size: 1rem; margin-bottom: 2rem; color: rgba(255, 255, 255, 0.9) !important; }
    .hero-title { font-size: 3.5rem; color: white !important; }
    
    .page-header .hero-title { color: white !important; }
    .page-header .hero-desc { color: rgba(255, 255, 255, 0.8) !important; }
    
    .section-process, .section-areas, .section-advantages, .section-canal, .section-form, .section-team, .section-bcorp {
        padding: 4rem 0;
    }
    
    .bcorp-grid { grid-template-columns: 1fr; gap: 2rem; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-card { border-bottom: 1px solid var(--border); }
    .process-card:nth-child(even) { border-right: none; }
}

@media (max-width: 900px) {
    .mobile-toggle { display: block; }
    
    .main-nav {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background-color: var(--bg-white);
        display: flex; flex-direction: column; justify-content: flex-start; align-items: center;
        padding-top: 100px;
        opacity: 0; visibility: hidden; transition: var(--transition); z-index: 1000;
    }

    .logo-link { z-index: 1100; position: relative; }

    .main-nav.active { opacity: 1; visibility: visible; }

    .main-nav ul { flex-direction: column; gap: 1.5rem; width: 100%; align-items: center; }
    .main-nav a { font-size: 1rem; color: var(--text-dark) !important; text-align: center; }
    
    .main-nav .btn-primary, .main-nav .btn-outline {
        width: 100%; max-width: 300px; margin: 0 auto;
        color: var(--text-dark) !important;
        border-color: var(--text-dark) !important;
        text-align: center;
        justify-content: center;
    }

    .push-right { margin-left: auto; margin-right: auto; }

    .header-container { height: 60px; }
    .logo-wrapper img { height: 40px !important; }
    .site-header.scrolled .logo-wrapper img { filter: none !important; }
    .partner-logo { margin-top: 1rem; width: 100%; display: flex; justify-content: center; }
    .partner-logo img { height: 40px !important; filter: none !important; }
    
    .hero { 
        height: auto; 
        min-height: 100vh; 
        padding-top: 130px; 
        padding-bottom: 60px;
        overflow: hidden;
    }
    .hero-inner { padding-top: 0; }
    .mobile-toggle svg { width: 22px; height: 22px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .compliance-grid { grid-template-columns: 1fr; }
    .advantages-list { grid-template-columns: 1fr; gap: 2rem; }
    .canal-box { grid-template-columns: 1fr; }
    .canal-text { padding: 3rem 2rem; }
    .form-wrapper { padding: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; gap: 3rem; }
    .modal-container { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-inner { padding-top: 10px; }
    .hero-desc { font-size: 0.9rem; }
    .hero-btns { flex-direction: column; gap: 1rem; width: 100%; }
    .hero-btns .btn-primary, .hero-btns .btn-ghost { width: 100%; text-align: center; }
    
    .canal-text { padding: 2.5rem 1.5rem !important; }
    .canal-text h2 { font-size: 2.2rem !important; }
    .canal-btns { flex-direction: column; width: 100%; }
    .canal-btns .btn-primary { width: 100%; }
    
    .hcard { transform: none !important; max-width: 100%; padding: 1.2rem; gap: 1rem; }
    .hcard-num { font-size: 2rem; }
    
    .section-header h2 { font-size: 2rem !important; }
    .process-grid { grid-template-columns: 1fr; }
    .process-card { border-right: none; padding: 2rem 1.5rem; }
    .areas-grid { grid-template-columns: 1fr; gap: 1rem; }
    .area-card { padding: 2rem 1.5rem; }
    .team-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
