/* ============================================= */
/* CJI ABOGADOS S.A.S. - Estilos Principales    */
/* ============================================= */

/* ============================================= */
/* CUSTOM PROPERTIES (VARIABLES)                */
/* ============================================= */
:root {
    /* Colores Principales */
    --primary-dark: #0b151e;
    --primary-medium: #112233;
    --accent-gold: #c5a880;
    --gold-light: #e3d5c1;
    
    /* Colores Neutros */
    --bg-light: #f4f6f8;
    --bg-white: #ffffff;
    --text-dark: #1a242f;
    --text-muted: #606f7b;
    --text-light: #8492a6;
    
    /* Colores de Estado */
    --success: #22c55e;
    --error: #ef4444;
    --warning: #f59e0b;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-gold: 0 4px 14px 0 rgba(197, 168, 128, 0.25);
    
    /* Transiciones */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Espaciados */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Bordes */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Tipografía */
    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Tamaños de Fuente */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Layout */
    --header-height: 80px;
    --container-max: 1280px;
    --container-padding: 1.5rem;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ============================================= */
/* UTILIDADES                                    */
/* ============================================= */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================= */
/* HEADER (index.php compatible)                 */
/* ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background-color: var(--primary-dark);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Main Nav */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav-item {
    list-style: none;
}

.nav-link {
    position: relative;
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.05em;
    padding: var(--space-sm) 0;
    transition: color var(--transition-fast);
    text-decoration: none;
}

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

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

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

.nav-link.nav-cta {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-link.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: var(--space-sm);
    z-index: 1001;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bg-white);
    border-radius: 2px;
    transition: all var(--transition-base);
    margin: 3px 0;
}

/* ============================================= */
/* HERO SECTION (index.php compatible)           */
/* ============================================= */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: calc(var(--header-height) + var(--space-4xl)) var(--container-padding) var(--space-4xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 50%, var(--primary-dark) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(197, 168, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(197, 168, 128, 0.08) 0%, transparent 50%);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--accent-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, var(--text-6xl));
    font-weight: 700;
    line-height: 1.1;
    color: var(--bg-white);
    margin-bottom: var(--space-lg);
}

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

.hero-subtitle {
    font-size: clamp(var(--text-base), 2vw, var(--text-lg));
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-4xl);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-base);
    cursor: pointer;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
}

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

.stat-number {
    display: inline;
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--accent-gold);
}

.stat-label {
    display: block;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-xs);
}

/* ============================================= */
/* SECTION UTILITIES (index.php compatible)      */
/* ============================================= */
.section-padding {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-4xl);
}

.section-tag {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
    color: var(--text-dark);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================= */
/* DIFERENTES SECTION (index.php compatible)     */
/* ============================================= */
.diferentes-section {
    background: var(--bg-light);
}

.manifiesto-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-3xl);
}

.manifiesto-tag {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.manifiesto-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
}

.manifiesto-text {
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: 1.9;
}

.manifiesto-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.diferentes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.diferente-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.diferente-card-number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--accent-gold);
    opacity: 0.3;
    margin-bottom: var(--space-md);
}

.diferente-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.diferente-card-text {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================= */
/* NOSOTROS SECTION (index.php compatible)       */
/* ============================================= */
.nosotros-section {
    background: var(--bg-white);
}

.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

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

.nosotros-main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.nosotros-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.nosotros-gallery-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.nosotros-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.nosotros-text .content-tag {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.content-title {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: var(--space-lg);
}

.nosotros-text p {
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.nosotros-experience {
    margin-top: var(--space-lg);
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-gold);
}

.experience-number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.value-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

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

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    border-radius: var(--radius-md);
    color: var(--accent-gold);
}

.value-icon svg {
    width: 28px;
    height: 28px;
}

.value-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.value-text {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================= */
/* SERVICIOS SECTION (index.php compatible)      */
/* ============================================= */
.servicios-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    color: var(--bg-white);
}

.servicios-section .section-title {
    color: var(--bg-white);
}

.servicios-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.servicio-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.servicio-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
}

.servicio-card-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.servicio-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--accent-gold);
    opacity: 0.5;
    line-height: 1;
}

.servicio-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--bg-white);
    line-height: 1.3;
}

.servicio-text {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.servicio-list {
    list-style: none;
}

.servicio-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.servicio-list svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    margin-top: 3px;
}

/* ============================================= */
/* EQUIPO SECTION (index.php compatible)         */
/* ============================================= */
.equipo-section {
    background: var(--bg-light);
}

.equipo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.equipo-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.equipo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.equipo-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.team-member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.equipo-card:hover .team-member-img {
    transform: scale(1.08);
}

.equipo-card-info {
    padding: var(--space-lg);
    text-align: center;
}

.equipo-card-name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.equipo-card-position {
    display: block;
    font-size: var(--text-sm);
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.equipo-card-bio {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.equipo-card-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent-gold);
    border-radius: 50%;
    color: var(--primary-dark);
    transition: all var(--transition-base);
}

.equipo-card-linkedin:hover {
    background: var(--gold-light);
    transform: scale(1.1);
}

.equipo-card-linkedin svg {
    width: 16px;
    height: 16px;
}

/* ============================================= */
/* TESTIMONIOS SECTION (index.php compatible)    */
/* ============================================= */
.testimonios-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    color: var(--bg-white);
}

.testimonios-section .section-title {
    color: var(--bg-white);
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonio-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonio-quote {
    color: var(--accent-gold);
    opacity: 0.5;
    margin-bottom: var(--space-lg);
}

.testimonio-quote svg {
    width: 40px;
    height: 40px;
}

.testimonio-text {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--space-xl);
}

.testimonio-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonio-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(197, 168, 128, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonio-avatar-placeholder {
    color: var(--accent-gold);
}

.testimonio-avatar-placeholder svg {
    width: 28px;
    height: 28px;
}

.testimonio-author-name {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--bg-white);
}

.testimonio-author-position {
    display: block;
    font-size: var(--text-sm);
    color: var(--accent-gold);
}

/* ============================================= */
/* CONTACTO SECTION (index.php compatible)       */
/* ============================================= */
.contacto-section {
    background: var(--bg-white);
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contacto-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contacto-item {
    display: flex;
    gap: var(--space-lg);
}

.contacto-item-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    border-radius: var(--radius-md);
    color: var(--accent-gold);
}

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

.contacto-item-title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.contacto-item-text {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

.contacto-map {
    margin-top: var(--space-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contacto-form-wrapper {
    background: var(--bg-light);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
}

.contacto-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contacto-form .form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contacto-form label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-dark);
}

.contacto-form input,
.contacto-form select,
.contacto-form textarea {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    font-size: var(--text-base);
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-white);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contacto-form input:focus,
.contacto-form select:focus,
.contacto-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.2);
}

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

.btn-full {
    width: 100%;
}

/* ============================================= */
/* FOOTER (index.php compatible)                 */
/* ============================================= */
.footer {
    background: var(--primary-dark);
    color: var(--bg-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    padding: var(--space-4xl) 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--bg-white);
    transition: all var(--transition-base);
}

.footer-social-link:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

.footer-title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: var(--space-lg);
}

.footer-links,
.footer-services-links {
    list-style: none;
}

.footer-links li,
.footer-services-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a,
.footer-services-links a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer-links a:hover,
.footer-services-links a:hover {
    color: var(--accent-gold);
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-list svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-lg) 0;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: var(--space-md);
}

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

.footer-legal a:hover {
    color: var(--accent-gold);
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================= */
/* RESPONSIVE (index.php compatible)             */
/* ============================================= */
@media (max-width: 1024px) {
    .nosotros-grid {
        grid-template-columns: 1fr;
    }
    
    .servicios-grid,
    .testimonios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .equipo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--transition-base);
        z-index: 1000;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    .nav-link {
        font-size: var(--text-xl);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    .diferentes-grid,
    .servicios-grid,
    .testimonios-grid,
    .contacto-grid {
        grid-template-columns: 1fr;
    }
    
    .equipo-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: var(--space-md);
    }
}

/* Site Header (index.html compatible) */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background-color: transparent;
    transition: all 0.4s ease;
    padding: 15px 0;
}

.site-header.scrolled {
    background-color: rgba(11, 21, 30, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.nav-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Logo */
.logo-wrapper {
    z-index: 1001;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--bg-white);
    transition: opacity var(--transition-fast);
}

.logo:hover {
    opacity: 0.9;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-cji {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.05em;
}

.logo-text {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Navegación */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    position: relative;
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95) !important;
    letter-spacing: 0.05em;
    padding: var(--space-sm) 0;
    transition: color 0.3s ease;
}

.site-header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
}

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

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

.nav-link.nav-cta {
    background: var(--accent-gold);
    color: var(--primary-dark) !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-link.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: var(--space-sm);
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--bg-white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger-line + .hamburger-line {
    margin-top: 6px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================= */
/* HERO SECTION                                  */
/* ============================================= */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: calc(var(--header-height) + var(--space-4xl)) var(--container-padding) var(--space-4xl);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 50%, var(--primary-dark) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(197, 168, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(197, 168, 128, 0.08) 0%, transparent 50%);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--accent-gold);
}

.badge-text {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--accent-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, var(--text-6xl));
    font-weight: 700;
    line-height: 1.1;
    color: var(--bg-white);
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.title-line {
    display: block;
}

.title-accent {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: clamp(var(--text-base), 2vw, var(--text-lg));
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-4xl);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-primary .btn-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

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

.btn-secondary:hover {
    border-color: var(--bg-white);
    background: rgba(255, 255, 255, 0.1);
}

/* Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 1s;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--accent-gold);
}

.stat-label {
    display: block;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-xs);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s;
}

.scroll-text {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
    animation: bounce 2s infinite;
}

/* ============================================= */
/* SECCIONES GENERALES                           */
/* ============================================= */
.section {
    display: none;
    padding: var(--space-4xl) 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-4xl);
}

.section-header-light .section-title,
.section-header-light .section-subtitle {
    color: var(--bg-white);
}

.section-tag {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.title-light {
    display: block;
    color: var(--text-dark);
}

.title-accent {
    display: block;
    color: var(--accent-gold);
}

.section-header-light .title-light {
    color: var(--bg-white);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.divider-line {
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
}

.divider-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================= */
/* ¿POR QUÉ SOMOS DIFERENTES?                   */
/* ============================================= */
.section-diferentes {
    background: var(--bg-light);
    padding: var(--space-4xl) 0;
}

.diferentes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

/* Manifiesto */
.manifiesto-wrapper {
    position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
}

.manifiesto-card {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.manifiesto-accent {
    height: 6px;
    background: linear-gradient(90deg, var(--accent-gold), var(--gold-light));
}

.manifiesto-content {
    padding: var(--space-2xl);
}

.manifiesto-tag {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.manifiesto-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
}

.manifiesto-text {
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: var(--space-xl);
}

.manifiesto-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.manifiesto-signature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.signature-line {
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
}

.signature-text {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.1em;
}

/* Tarjetas de Diferentes */
.diferentes-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.diferente-card {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    overflow: hidden;
}

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

.card-icon-wrapper {
    margin-bottom: var(--space-lg);
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    border-radius: var(--radius-md);
    color: var(--accent-gold);
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.diferente-card .card-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.diferente-card .card-text {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.8;
}

.card-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.diferente-card:hover .card-accent-line {
    transform: scaleX(1);
}

/* Responsive - Diferentes */
@media (max-width: 1024px) {
    .diferentes-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .manifiesto-wrapper {
        position: static;
    }
}

/* ============================================= */
/* SOBRE NOSOTROS                                */
/* ============================================= */
.section-nosotros {
    background: var(--bg-white);
}

.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: center;
}

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

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
}

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

.image-placeholder svg {
    width: 80px;
    height: 80px;
}

.image-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--accent-gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: var(--space-xl);
    left: -30px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nosotros-content .content-tag {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.content-title {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: var(--space-lg);
}

.content-text {
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.value-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    border-radius: var(--radius-md);
    color: var(--accent-gold);
}

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

.value-title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.value-text {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================= */
/* SERVICIOS                                     */
/* ============================================= */
.section-servicios {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    padding: var(--space-4xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card:hover .card-accent {
    transform: scaleX(1);
}

.card-content {
    padding: var(--space-2xl);
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 168, 128, 0.1);
    border-radius: var(--radius-md);
    color: var(--accent-gold);
    margin-bottom: var(--space-lg);
}

.card-icon svg {
    width: 30px;
    height: 30px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: var(--space-md);
}

.card-text {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.card-list {
    margin-bottom: var(--space-lg);
}

.card-list li {
    position: relative;
    padding-left: var(--space-lg);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-sm);
}

.card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.card-footer {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-gold);
    transition: gap var(--transition-base);
}

.card-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-base);
}

.card-link:hover {
    gap: var(--space-md);
}

.card-link:hover svg {
    transform: translateX(4px);
}

/* ============================================= */
/* EQUIPO                                        */
/* ============================================= */
.section-equipo {
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.team-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
}

.card-image .image-placeholder {
    color: rgba(197, 168, 128, 0.3);
}

.card-image .image-placeholder svg {
    width: 60px;
    height: 60px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 21, 30, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.team-card:hover .image-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gold);
    border-radius: 50%;
    color: var(--primary-dark);
    transition: transform var(--transition-base), background var(--transition-base);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    transform: scale(1.1);
    background: var(--gold-light);
}

.team-card .card-content {
    padding: var(--space-lg);
    text-align: center;
}

.member-name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.member-position {
    display: block;
    font-size: var(--text-sm);
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.member-bio {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================= */
/* TESTIMONIOS                                   */
/* ============================================= */
.section-testimonials {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    padding: var(--space-4xl) 0;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 300px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: var(--space-2xl);
    opacity: 0;
    transform: translateX(50px);
    transition: all var(--transition-slow);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.quote-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-lg);
    color: var(--accent-gold);
    opacity: 0.5;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-lg), 2.5vw, var(--text-xl));
    font-weight: 400;
    color: var(--bg-white);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--space-2xl);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: rgba(197, 168, 128, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.author-avatar svg {
    width: 28px;
    height: 28px;
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--bg-white);
}

.author-position {
    display: block;
    font-size: var(--text-sm);
    color: var(--accent-gold);
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.slider-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--bg-white);
    transition: all var(--transition-base);
}

.slider-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

.slider-dots {
    display: flex;
    gap: var(--space-sm);
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* ============================================= */
/* CONTACTO                                      */
/* ============================================= */
.section-contacto {
    background: var(--bg-white);
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contacto-info .section-tag {
    display: inline-block;
    margin-bottom: var(--space-md);
}

.contacto-info .section-title {
    margin-bottom: var(--space-lg);
}

.info-text {
    font-size: var(--text-lg);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-item {
    display: flex;
    gap: var(--space-lg);
}

.item-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    border-radius: var(--radius-md);
    color: var(--accent-gold);
}

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

.item-title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.item-text {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

/* Mapa Simulado */
.map-wrapper {
    margin-top: var(--space-2xl);
}

.map-container {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.map-pin {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gold);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    animation: pulse 2s infinite;
}

.map-pin svg {
    width: 24px;
    height: 24px;
    color: var(--primary-dark);
    transform: rotate(45deg);
}

.map-address {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--bg-white);
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    backdrop-filter: blur(5px);
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(-45deg) scale(1);
    }
    50% {
        transform: rotate(-45deg) scale(1.1);
    }
}

/* Formulario */
.contacto-form-wrapper {
    background: var(--bg-light);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
}

.contacto-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    font-size: var(--text-base);
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-white);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.2);
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-input.error {
    border-color: var(--error);
}

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

.textarea-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-error {
    font-size: var(--text-xs);
    color: var(--error);
    min-height: 18px;
}

.char-counter {
    font-size: var(--text-xs);
    color: var(--text-light);
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* Botón de Envío - CORPORATIVO COMPACTO */
.btn-submit,
.btn-submit-fixed {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    width: auto;
    min-width: 160px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    background-color: var(--accent-gold);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover:not(:disabled),
.btn-submit-fixed:hover:not(:disabled) {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px 0 rgba(197, 168, 128, 0.35);
}

.btn-submit:active:not(:disabled),
.btn-submit-fixed:active:not(:disabled) {
    transform: translateY(0);
}

.btn-submit:disabled,
.btn-submit-fixed:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-submit i,
.btn-submit-fixed i {
    font-size: 0.9rem;
}

.btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-loading,
.btn-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit.loading .btn-text,
.btn-submit-fixed.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading,
.btn-submit-fixed.loading .btn-loading {
    display: flex;
}

.btn-submit.success .btn-text,
.btn-submit-fixed.success .btn-text {
    display: none;
}

.btn-submit.success .btn-loading,
.btn-submit-fixed.success .btn-loading {
    display: none;
}

.btn-submit.success .btn-success,
.btn-submit-fixed.success .btn-success {
    display: flex;
}

.btn-submit.success,
.btn-submit-fixed.success {
    background: var(--success);
    color: var(--bg-white);
}

.btn-text svg,
.btn-loading svg,
.btn-success svg {
    width: 16px;
    height: 16px;
}

.spinner {
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
}

.spinner circle {
    stroke: currentColor;
}

/* ============================================= */
/* FOOTER                                        */
/* ============================================= */
.site-footer {
    background: var(--primary-dark);
}

.footer-main {
    padding: var(--space-4xl) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-3xl);
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social .social-link {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
}

.footer-social .social-link:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.footer-title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: var(--space-lg);
}

.footer-menu li {
    margin-bottom: var(--space-sm);
}

.footer-menu a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-menu a:hover {
    color: var(--accent-gold);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-contact-list svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    margin-top: 2px;
}

.footer-contact-list span {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-lg) 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.footer-legal a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--accent-gold);
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================= */
/* NOTIFICACIONES                                */
/* ============================================= */
.notification-container {
    position: fixed;
    top: calc(var(--header-height) + var(--space-lg));
    right: var(--space-lg);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.notification {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: slideInRight 0.3s ease;
    min-width: 300px;
    max-width: 400px;
}

.notification.success {
    border-left: 4px solid var(--success);
}

.notification.error {
    border-left: 4px solid var(--error);
}

.notification.warning {
    border-left: 4px solid var(--warning);
}

.notification-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.notification.success .notification-icon {
    color: var(--success);
}

.notification.error .notification-icon {
    color: var(--error);
}

.notification.warning .notification-icon {
    color: var(--warning);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.notification-message {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.notification-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--text-light);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.notification-close:hover {
    color: var(--text-dark);
}

/* ============================================= */
/* ANIMACIONES                                   */
/* ============================================= */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

/* ============================================= */
/* RESPONSIVE                                    */
/* ============================================= */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --header-height: 70px;
    }

    .nosotros-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .nosotros-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacto-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
    }
}

/* Móvil */
@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
        --space-4xl: 4rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: var(--primary-dark);
        transition: right var(--transition-base);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: var(--text-xl);
        padding: var(--space-md);
    }

    .nav-link.nav-cta {
        margin-top: var(--space-lg);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

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

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

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

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* Móvil pequeño */
@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-3xl);
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

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

    .experience-badge {
        left: var(--space-md);
        bottom: var(--space-md);
    }

    .footer-legal {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .footer-legal .separator {
        display: none;
    }
}

/* ============================================= */
/* UTILIDADES DE ANIMACIÓN PARA SCROLL           */
/* ============================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ============================================= */
/* NUEVOS ESTILOS - IMÁGENES Y LOGO              */
/* ============================================= */

/* Hero Logo Central Grande */
.hero-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-logo-img {
    width: 180px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(197, 168, 128, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 30px rgba(197, 168, 128, 0.5));
}

/* Sobre Nosotros - Grid Layout */
.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Sobre Nosotros - Imágenes */
.nosotros-main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.nosotros-main-img:hover {
    transform: scale(1.02);
}

.nosotros-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.nosotros-gallery-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nosotros-gallery-img:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Equipo - Imágenes de miembros */
.team-member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-member-img {
    transform: scale(1.08);
}

/* Footer Centralizado */
.footer-brand-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    grid-column: 1 / -1;
}

.footer-logo-centered {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(197, 168, 128, 0.2));
    transition: transform 0.3s ease;
}

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

.footer-brand-centered .footer-tagline {
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.footer-brand-centered .footer-social {
    justify-content: center;
}

/* Footer Grid Update */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand-centered {
    grid-column: 1 / -1;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

/* Animación fadeInDown */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efecto de brillo dorado en imágenes */
.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(197, 168, 128, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.image-frame:hover::after {
    left: 100%;
}

/* Responsive para nuevas imágenes */
@media (max-width: 768px) {
    .hero-logo-img {
        width: 120px;
    }
    
    .nosotros-main-img {
        height: 250px;
    }
    
    .nosotros-gallery-img {
        height: 100px;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand-centered {
        grid-column: 1;
    }
}

/* ============================================= */
/* WHATSAPP FLOATING BUTTON                      */
/* ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 54px;
        height: 54px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
