/* 
 * Arenas Abogados - Design System
 * Based on ui-ux-legal skill parameters
 */

:root {
    /* Colors (Arenas Abogados Brand) */
    --color-bg-primary: #FDFAF6;   /* Blanco roto cálido */
    --color-bg-secondary: #F5EFE6; /* Arena suave */
    --color-dark: #2C1A0E;         /* Marrón tabaco oscuro */
    --color-accent: #6B3F20;       /* Terracota / Sienna */
    --color-text: #3D2B1F;         /* Marrón para texto cuerpo */
    --color-border: #D9C5AE;       /* Arena medio */
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --nav-height: 90px;
    --section-padding: 100px;
    
    /* Pro Max UI Variables */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1); /* Faster 300ms as per UX guide */
    --shadow-sm: 0 2px 8px rgba(44, 26, 14, 0.05); /* Pro Max subtle shadow */
    --shadow-elegant: 0 10px 40px rgba(44, 26, 14, 0.05);
    --shadow-hover: 0 15px 45px rgba(44, 26, 14, 0.12);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }

p {
    margin-bottom: 1.5rem;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast; /* Mejor nitidez al escalar */
    image-rendering: high-quality;
    transform: translateZ(0); /* Aceleración por hardware para suavizado */
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-padding) 0;
}

.bg-arena {
    background-color: var(--color-bg-secondary);
}

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

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text);
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-bg-primary);
}

.btn-primary:hover {
    background-color: var(--color-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(253, 250, 246, 0.7);
    color: #FDFAF6;
}

.btn-outline:hover {
    background-color: rgba(253, 250, 246, 0.1);
    color: #fff;
    transform: translateY(-2px);
    border-color: #fff;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(253, 250, 246, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(217, 197, 174, 0.3);
}

.navbar.scrolled {
    height: 70px;
    background-color: rgba(253, 250, 246, 0.98);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    transition: var(--transition-fast);
}

.logo-text-main, .logo-text-sub {
    color: #5C3317 !important;
}

.logo-text-main {
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    line-height: 1.1;
    margin-left: 0.15em;
}

.logo-text-sub {
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    line-height: 1.1;
}

.navbar.scrolled .logo-text-main {
    font-size: 1.3rem;
}
.navbar.scrolled .logo-text-sub {
    font-size: 1.3rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.02em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--color-dark);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-juridico-empty.png');
    background-size: cover;
    background-position: center 30%; /* Better focal point for the desk */
    z-index: 1;
}

/* Overlay as per guidelines: rgba(44, 26, 14, 0.55) */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 26, 14, 0.65); /* Slightly darker for better text contrast */
}

.hero-container {
    position: relative;
    z-index: 2;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: rgba(253, 250, 246, 0.1);
    border: 1px solid rgba(253, 250, 246, 0.25);
    border-radius: 50px;
    color: #FDFAF6;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
    text-transform: uppercase;
}

.hero-title {
    color: #FDFAF6;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-subtitle {
    color: rgba(253, 250, 246, 0.9);
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 600px;
    letter-spacing: 0.02em;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 1.5rem 2.5rem;
    background-color: rgba(44, 26, 14, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(253, 250, 246, 0.15);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: fit-content;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    color: #FDFAF6;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: rgba(253, 250, 246, 0.8);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(253, 250, 246, 0.2);
}

/* Animations */
.fade-up {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Pro Max stability fix: Only apply hidden state if JS successfully runs */
html.js-enabled .fade-up {
    opacity: 0;
    transform: translateY(30px);
}

html.js-enabled .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Media Queries */
@media (max-width: 992px) {
    .nav-list { display: none; }
    .menu-toggle { display: block; }
    .nav-btn { display: none; }
    
    /* Mobile Menu Implementation needs js toggle logic */
    .nav-menu.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-bg-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    
    .nav-menu.active .nav-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .nav-menu.active .nav-link {
        font-size: 1.5rem;
    }
    
    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 9px; }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
}

/* Areas de Práctica Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.area-card {
    background-color: var(--color-bg-primary);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(217, 197, 174, 0.4);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-accent);
}

.area-icon {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(107, 63, 32, 0.05);
    border-radius: 50%;
}

.area-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.area-desc {
    font-size: 0.95rem;
    color: var(--color-text);
    opacity: 0.85;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Sobre Nosotros Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    border-radius: 8px;
    width: 100%;
    max-width: 450px;
    margin: 0 auto; 
    align-self: center;
}

.about-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px; 
    box-shadow: var(--shadow-elegant);
    filter: contrast(1.05) saturate(1.08); /* Mejora de nitidez por CSS */
}

/* Decoración elegante detrás de la foto */
.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
    border: 2px solid var(--color-accent);
    border-radius: 12px;
    z-index: -1;
}

/* Team Section (Dark Theme) */
.team-section {
    background-color: #121212;
    color: #e0e0e0;
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team-image-col {
    padding: 1rem;
}

.team-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 1.5rem;
}

.team-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 1px solid rgba(184, 155, 94, 0.5);
    z-index: 0;
    pointer-events: none;
    border-radius: 4px;
}

.team-image-wrapper::after {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 0;
    pointer-events: none;
    border-radius: 2px;
}

.team-image-wrapper img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.15) brightness(0.9);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    display: block;
    border-radius: 2px;
}

.team-content {
    max-width: 600px;
}

.team-eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #B89B5E;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.team-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: #B89B5E;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.1;
}

.team-lastname {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: #B89B5E;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 0.8rem;
    line-height: 1.1;
}

.team-role {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #B89B5E;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.team-bio {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #A0A0A0;
    margin-bottom: 2.5rem;
}

.team-bio p {
    margin-bottom: 1.25rem;
}

.team-credentials {
    list-style: none;
    padding: 0;
}

.team-credentials li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #A0A0A0;
    line-height: 1.5;
}

.team-credentials li::before {
    content: '•';
    color: #B89B5E;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    line-height: 1;
}

/* Despacho / Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/5;
    position: relative;
    box-shadow: var(--shadow-sm);
    background-color: var(--color-bg-primary);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
    filter: contrast(1.08); /* Mejora de contraste de la foto en B/N por CSS */
}

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

.map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
    margin-top: 3rem;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--color-bg-primary);
}

.google-rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background-color: #fff;
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    max-width: 500px;
    margin: 0 auto 4rem;
    border: 1px solid rgba(217, 197, 174, 0.3);
}

.g-logo svg {
    width: 48px;
    height: 48px;
}

.g-score {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.g-score .score-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--color-dark);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.g-score .stars {
    color: #FBBC05;
    font-size: 1.3rem;
    letter-spacing: 2px;
    line-height: 1;
}

.g-score .score-text {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.3rem;
}

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

.review-card {
    background-color: var(--color-bg-secondary);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(217, 197, 174, 0.4);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: #FDFAF6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.reviewer-info h3 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-dark);
}

.reviewer-info .stars {
    color: #FBBC05;
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1;
}

.review-text {
    font-style: italic;
    font-size: 1rem;
    color: var(--color-text);
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Floating WhatsApp Button */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}

.float-wa:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

.float-wa .wa-icon {
    width: 24px;
    height: 24px;
}

/* Contacto Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    padding-right: 2rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    color: var(--color-accent);
    flex-shrink: 0;
}

.info-text h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.info-text p {
    margin-bottom: 0;
    opacity: 0.85;
}

/* Formulario minimalista */
.contact-form {
    background-color: var(--color-bg-primary);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-elegant);
}

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

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

.form-control {
    width: 100%;
    padding: 1rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-border);
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--color-accent);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.success-message {
    text-align: center;
    padding: 2rem;
    color: #2e7d32;
    background-color: #e8f5e9;
    border-radius: 8px;
}

.success-message h3 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: #FDFAF6;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: center;
}

.footer-logo-text-container {
    font-family: var(--font-heading);
    color: #FDFAF6;
    line-height: 1.1;
    display: inline-block;
}

.footer-logo-text-main {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
}

.footer-logo-text-sub {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
}

.footer-desc {
    margin-top: 1.5rem;
    opacity: 0.7;
    max-width: 400px;
}

.footer-links {
    text-align: right;
}

.footer-links ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-links a {
    color: #FDFAF6;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(253, 250, 246, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Responsive updates for new sections */
@media (max-width: 1024px) {
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image { margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr; gap: 4rem; }
    .team-image-col { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .areas-grid { grid-template-columns: 1fr; }
    .team-name, .team-lastname { font-size: 2.5rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .google-rating-box { padding: 1.5rem; flex-direction: column; text-align: center; }
    .g-score { text-align: center; }
    .hero-stats { flex-direction: column; gap: 1rem; align-items: center; padding: 1.5rem; width: 100%; }
    .stat-divider { width: 100px; height: 1px; margin: 0.5rem 0; }
    .about-image { margin: 0 auto; }
    .about-image img { height: auto; object-fit: cover; }
    .contact-form { padding: 2rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .footer-desc { margin: 1.5rem auto 0; }
    .footer-links { text-align: center; }
    .footer-links ul { justify-content: center; flex-direction: column; gap: 1rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
    .float-wa span { display: none; }
    .float-wa { padding: 15px; border-radius: 50%; bottom: 20px; right: 20px; }
    .float-wa .wa-icon { width: 32px; height: 32px; margin: 0; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero-content { text-align: center; margin: 0 auto; }
}
