/* ==========================================================================
   1077 ABOGADOS - Premium Legal Firm Stylesheet
   ========================================================================== */

/* --- Variables --- */
:root {
    /* Colors */
    --c-white: #FFFFFF;
    --c-black: #000000;
    --c-light-grey: #F5F5F5;
    --c-dark-grey: #1A1A1A;
    --c-gold: #B8964A; /* Prestigious actual gold as requested */
    --c-silver: #C0C0C0;
    
    /* Typography */
    --font-heading: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    
    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--c-white);
    color: var(--c-dark-grey);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--c-black);
    font-weight: 500;
    line-height: 1.2;
}

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

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

ul {
    list-style: none;
}

/* --- Utilities --- */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

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

.dark-bg {
    background-color: var(--c-dark-grey);
    color: var(--c-white);
}

.dark-bg h2, .dark-bg h3, .dark-bg h4 {
    color: var(--c-white);
}

.grey-bg {
    background-color: var(--c-light-grey);
}

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

.grid {
    display: grid;
    gap: var(--space-md);
}

.grid.two-cols { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 768px) {
    .grid.two-cols { grid-template-columns: repeat(2, 1fr); }
}

.align-center { align-items: center; }
.mt-4 { margin-top: var(--space-md); }
.pt-5 { padding-top: var(--space-xl); }
.pb-4 { padding-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-md); }
.border-top { border-top: 1px solid rgba(255,255,255,0.1); }
.w-100 { width: 100%; }

/* --- Typography System --- */
.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--c-dark-grey);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
    .section-title { font-size: 3.5rem; }
}

.body-text {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: var(--space-sm);
}

.dark-bg .body-text { color: #BBB; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn i { margin-right: 0.5rem; font-size: 1.2rem; }

.btn-primary {
    background-color: var(--c-black);
    color: var(--c-white);
    border: 1px solid var(--c-black);
}

.btn-primary:hover {
    background-color: var(--c-gold);
    border-color: var(--c-gold);
    color: var(--c-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--c-white);
    border: 1px solid var(--c-white);
}

.btn-outline:hover {
    background-color: var(--c-white);
    color: var(--c-black);
}

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

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

.btn-whatsapp {
    background-color: #25D366;
    color: var(--c-white);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-emergency { 
    background: var(--c-gold); 
    color: white; 
    padding: 0.8rem 1.5rem; 
    font-weight: 700; 
    text-decoration: none; 
    animation: pulse 2.5s infinite; 
    border-radius: 4px; 
    text-transform: uppercase;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 1px;
}
@keyframes pulse { 0% { transform: scale(1); } 50% { background: #d4af37; box-shadow: 0 0 15px rgba(212,175,55,0.6); } 100% { transform: scale(1); } }

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition-slow);
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
}

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

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--c-white);
    letter-spacing: 1px;
}

.logo-accent {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: all var(--transition-fast);
}

.nav-links {
    display: none;
}

@media (min-width: 992px) {
    .nav-links {
        display: flex;
        gap: 2.5rem;
    }
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--c-gold);
    transition: width var(--transition-fast);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--c-white);
}

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

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

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

.mobile-toggle {
    background: none;
    border: none;
    color: var(--c-white);
    font-size: 1.8rem;
    cursor: pointer;
    display: block;
}

@media (min-width: 992px) {
    .mobile-toggle { display: none; }
}

/* Mobile Menu Active State */
.navbar.menu-open {
    background-color: var(--c-black);
}

.navbar.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--c-black);
    padding: 2rem;
    text-align: center;
    gap: 1.5rem;
    border-top: 1px solid #333;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--c-white);
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    z-index: 1;
}

.hero-fallback, .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--c-white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

@media (min-width: 768px) {
    .hero-title { font-size: 5.5rem; }
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.5px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subtitle { font-size: 1.3rem; }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--c-gold);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

.seguros-banner {
    position: relative;
    overflow: hidden;
}

/* --- Practice Areas --- */
.practicas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: var(--space-xl);
}

.practica-card {
    background-color: var(--c-white);
    padding: 3rem 2rem;
    border: 1px solid #EAEAEA;
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
    flex: 1 1 300px;
    max-width: 400px;
    height: auto;
}

.practica-card:hover {
    border-color: var(--c-black);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--c-black);
    margin-bottom: 1.5rem;
    transition: color var(--transition-fast);
}

.practica-card:hover .card-icon {
    color: var(--c-gold);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-text {
    color: #666;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.card-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--c-black);
}

.card-link i {
    transition: transform var(--transition-fast);
}

.practica-card:hover .card-link i {
    transform: translateX(5px);
    color: var(--c-gold);
}

/* --- About Us --- */
.nosotros-image {
    position: relative;
}

.nosotros-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(20%);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--c-gold);
    color: var(--c-white);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

@media (max-width: 767px) {
    .nosotros-image { margin-bottom: 4rem; }
    .experience-badge { bottom: -20px; right: 20px; width: 150px; height: 150px; padding: 1rem; }
    .experience-badge .number { font-size: 2.5rem; }
}

.nosotros-content {
    padding-left: 0;
}

@media (min-width: 992px) {
    .nosotros-content { padding-left: 4rem; }
}

/* --- Stats / Results --- */
.stats-grid {
    grid-template-columns: 1fr;
    margin-top: var(--space-xl);
    border-top: 1px solid #EAEAEA;
    border-bottom: 1px solid #EAEAEA;
}

@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 0; }
}

.stat-item {
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 1px solid #EAEAEA;
}

@media (min-width: 768px) {
    .stat-item { border-bottom: none; border-right: 1px solid #EAEAEA; }
    .stat-item:last-child { border-right: none; }
}

.stat-number {
    font-size: 4.5rem;
    display: inline-block;
    color: var(--c-black);
    line-height: 1;
}

.stat-symbol {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--c-gold);
    vertical-align: top;
}

.stat-desc {
    font-weight: 500;
    color: #666;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* --- Insurance Carousel Section --- */
.seguros-carousel-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.seguros-carousel {
    position: relative;
    z-index: 2;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seguros-slide {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    padding: 0 1rem;
}

.seguros-slide.active {
    opacity: 1;
    visibility: visible;
}

.seguros-slide-title {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .seguros-slide-title {
        font-size: 2.2rem;
    }
}

.seguros-slide-body {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 750px;
    margin: 0 auto 1.25rem auto;
    line-height: 1.75;
    text-align: justify;
    text-align-last: center;
}

.seguros-slide-highlight {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    max-width: 700px;
    margin: 0 auto 0.75rem auto;
    line-height: 1.5;
}

.seguros-slide-sub {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.seguros-slide-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--c-gold);
    margin: 1.5rem auto;
    padding-left: 1.5rem;
    border-left: 2px solid var(--c-gold);
    max-width: 500px;
    text-align: left;
    line-height: 1.6;
}

/* CTA Button */
.btn-seguros-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.9rem 2.5rem;
    background: transparent;
    color: var(--c-gold);
    border: 1px solid var(--c-gold);
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-seguros-cta:hover {
    background: var(--c-gold);
    color: var(--c-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(183, 155, 95, 0.3);
}

/* Dot Indicators */
.seguros-dots {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.seguros-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.seguros-dot.active {
    background: var(--c-gold);
    border-color: var(--c-gold);
    transform: scale(1.3);
}

@media (max-width: 767px) {
    .seguros-carousel {
        min-height: 520px;
    }
    .seguros-slide-title {
        font-size: 1.4rem;
        letter-spacing: 1.5px;
    }
    .seguros-slide-highlight {
        font-size: 1.1rem;
    }
    .seguros-slide-quote {
        font-size: 1rem;
    }
}

/* --- Elite Contact Section --- */
.contacto-elite {
    background-color: var(--c-white);
    padding: 8rem 0;
}

.elite-form-header {
    margin-bottom: 4rem;
}

.elite-form-subtitle {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.8rem;
    letter-spacing: 4px;
    font-weight: 300;
    color: var(--c-gold);
    margin-bottom: 1rem;
}

.elite-form-title {
    font-family: 'Playfair Display', 'Inter', 'Helvetica Neue', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--c-black);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .elite-form-title { font-size: 3.8rem; }
}

.elite-divider {
    width: 60px;
    height: 1px;
    background: var(--c-gold);
    margin: 0 auto 2rem auto;
}

.elite-form-desc {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: justify;
    text-align-last: center;
}

/* Form Container */
.elite-form-container {
    max-width: 780px;
    margin: 0 auto;
    background: var(--c-white);
    padding: 3.5rem 3rem;
    border: 0.5px solid #E8E8E8;
    box-shadow: 0 30px 80px rgba(0,0,0,0.04);
    position: relative;
}

@media (max-width: 767px) {
    .elite-form-container {
        padding: 2rem 1.5rem;
    }
}

/* Form Grid */
.elite-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .elite-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 3rem;
    }
    .elite-form-group.full-width {
        grid-column: 1 / -1;
    }
}

/* Form Groups */
.elite-form-group {
    position: relative;
}

.elite-form-group label {
    display: block;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--c-black);
    margin-bottom: 0.75rem;
}

.elite-form-group input,
.elite-form-group select,
.elite-form-group textarea {
    width: 100%;
    padding: 0.9rem 0;
    border: none;
    border-bottom: 0.5px solid #D0D0D0;
    background: transparent;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--c-dark-grey);
    outline: none;
    transition: border-color 0.4s ease;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.elite-form-group input::placeholder,
.elite-form-group textarea::placeholder {
    color: #B5B5B5;
    font-weight: 300;
}

.elite-form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 20px;
}

/* Animated underline */
.elite-field-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--c-gold);
    transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.elite-form-group input:focus ~ .elite-field-line,
.elite-form-group select:focus ~ .elite-field-line,
.elite-form-group textarea:focus ~ .elite-field-line,
.elite-phone-wrapper:focus-within ~ .elite-field-line {
    width: 100%;
}

.elite-form-group input:focus,
.elite-form-group select:focus,
.elite-form-group textarea:focus {
    border-bottom-color: transparent;
}

.elite-form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.7;
}

/* Email Error */
.elite-field-error {
    display: none;
    font-size: 0.75rem;
    color: #C0392B;
    font-weight: 400;
    margin-top: 0.5rem;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.elite-field-error.visible {
    display: block;
}

/* Phone Wrapper */
.elite-phone-wrapper {
    display: flex;
    gap: 0;
    align-items: flex-end;
}

.elite-country-select {
    width: 110px !important;
    flex-shrink: 0;
    font-size: 0.95rem !important;
    border-bottom: 0.5px solid #D0D0D0 !important;
    padding-right: 14px !important;
    background-position: right 0 center !important;
    cursor: pointer;
}

.elite-phone-wrapper input {
    flex: 1;
    border-bottom: 0.5px solid #D0D0D0;
}

/* Confidential Badge */
.elite-confidential-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--c-gold);
    letter-spacing: 1.5px;
    margin-left: 0.75rem;
    padding: 3px 10px;
    border: 0.5px solid var(--c-gold);
    vertical-align: middle;
}

.elite-confidential-badge i {
    font-size: 0.7rem;
}

/* Privacy Checkbox */
.elite-privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 0.5px solid #E8E8E8;
}

.elite-privacy-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--c-gold);
    cursor: pointer;
}

.elite-privacy-check label {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    cursor: pointer;
    text-align: justify;
}

.elite-privacy-link {
    color: var(--c-gold) !important;
    text-decoration: underline !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
}

.elite-privacy-link:hover {
    color: var(--c-black) !important;
}

/* Submit Button */
.elite-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 1.25rem 2rem;
    margin-top: 2.5rem;
    background: var(--c-black);
    color: var(--c-white);
    border: 1px solid var(--c-black);
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.elite-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(184,150,74,0.15), transparent);
    transition: left 0.7s ease;
}

.elite-submit-btn:hover::before {
    left: 100%;
}

.elite-submit-btn:hover {
    background: var(--c-gold);
    border-color: var(--c-gold);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(184, 150, 74, 0.25);
    letter-spacing: 4px;
}

.elite-submit-btn .btn-icon {
    transition: transform 0.3s ease;
}

.elite-submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.elite-submit-btn .btn-loader i {
    animation: spinLoader 1s linear infinite;
}

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

/* Success Card */
.elite-success-card {
    text-align: center;
    padding: 4rem 3rem;
    animation: fadeInSuccess 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.success-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--c-gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem auto;
    animation: pulseSuccess 2s infinite;
}

@keyframes pulseSuccess {
    0% { box-shadow: 0 0 0 0 rgba(184,150,74,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(184,150,74,0); }
    100% { box-shadow: 0 0 0 0 rgba(184,150,74,0); }
}

.elite-success-card h3 {
    font-family: 'Playfair Display', 'Inter', 'Helvetica Neue', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-black);
    margin-bottom: 1.5rem;
}

.elite-success-card p {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    color: #666;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
    text-align: justify;
    text-align-last: center;
}

.success-divider {
    width: 40px;
    height: 1px;
    background: var(--c-gold);
    margin: 2rem auto;
}

.success-tagline {
    font-size: 1rem !important;
    color: var(--c-black) !important;
    font-weight: 400 !important;
}

.success-contact-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.success-contact-mini a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #888;
    transition: color 0.3s ease;
}

.success-contact-mini a:hover {
    color: var(--c-gold);
}

/* Privacy Modal - Glassmorphism */
.elite-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 2rem;
}

.elite-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.elite-modal {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 0.5px solid rgba(255, 255, 255, 0.5);
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 3rem;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.elite-modal-overlay.active .elite-modal {
    transform: translateY(0) scale(1);
}

@media (max-width: 767px) {
    .elite-modal {
        padding: 2rem 1.5rem;
        max-height: 85vh;
    }
}

.elite-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: 1px solid #DDD;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--c-dark-grey);
    transition: all 0.3s ease;
}

.elite-modal-close:hover {
    background: var(--c-black);
    border-color: var(--c-black);
    color: var(--c-white);
}

.elite-modal-content h2 {
    font-family: 'Playfair Display', 'Inter', 'Helvetica Neue', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-black);
    margin-bottom: 1rem;
    padding-right: 3rem;
}

.elite-modal-divider {
    width: 40px;
    height: 1px;
    background: var(--c-gold);
    margin-bottom: 2rem;
}

.elite-modal-content p {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.elite-modal-content h3 {
    font-family: 'Playfair Display', 'Inter', 'Helvetica Neue', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-black);
    margin-bottom: 0.75rem;
    margin-top: 2rem;
}

.elite-modal-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.elite-modal-content ul li {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #555;
    line-height: 1.7;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 0.5px solid #F0F0F0;
}

.elite-modal-content ul li:last-child {
    border-bottom: none;
}

.elite-modal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--c-gold);
}

.elite-modal-content ul li strong {
    color: var(--c-black);
    font-weight: 600;
}

/* Scrollbar for Modal */
.elite-modal::-webkit-scrollbar {
    width: 4px;
}

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

.elite-modal::-webkit-scrollbar-thumb {
    background: var(--c-gold);
    border-radius: 2px;
}

/* --- Footer --- */
.footer-logo-img {
    height: 70px;
    width: auto;
    margin: 0 auto 1rem auto;
    display: block;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--c-gold);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-links a {
    color: var(--c-white);
    font-size: 1.5rem;
    opacity: 0.7;
}

.social-links a:hover {
    opacity: 1;
    color: var(--c-gold);
}

/* --- Floating WhatsApp --- */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all var(--transition-fast);
}

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

@media (max-width: 767px) {
    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* --- AI Chat Widget --- */
.ai-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 110px; /* next to WhatsApp */
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.ai-chat-toggle {
    width: 60px;
    height: 60px;
    background-color: var(--c-black);
    color: var(--c-gold);
    border: 2px solid var(--c-gold);
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all var(--transition-fast);
}

.ai-chat-toggle:hover {
    transform: scale(1.1);
    background-color: var(--c-gold);
    color: var(--c-black);
}

.ai-chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 450px;
    background: var(--c-white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ai-chat-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ai-chat-header {
    background: var(--c-black);
    color: var(--c-white);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--c-gold);
}

.ai-chat-header h4 {
    color: var(--c-white);
    font-size: 1.1rem;
    margin: 0;
}

.ai-chat-header p {
    font-size: 0.75rem;
    color: var(--c-gold);
    margin: 0;
}

.ai-chat-close {
    background: none;
    border: none;
    color: var(--c-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.ai-chat-lead-form {
    padding: 1.5rem;
    background: var(--c-light-grey);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    overflow-y: auto;
}

.ai-chat-lead-form p {
    font-size: 0.9rem;
    color: var(--c-dark-grey);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.ai-chat-lead-form input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #CCC;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
}

.ai-chat-lead-form input:focus {
    border-color: var(--c-gold);
}

.ai-chat-lead-form button, .btn-gold-full {
    margin-top: 0.5rem;
    width: 100%;
    padding: 1rem;
    border-radius: 4px;
    background: var(--c-gold);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.ai-chat-lead-form button:hover, .btn-gold-full:hover {
    background: var(--c-black);
}

.ai-chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--c-light-grey);
}

.chat-msg {
    max-width: 85%;
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.ai-msg {
    background: var(--c-white);
    color: var(--c-dark-grey);
    align-self: flex-start;
    border-bottom-left-radius: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.user-msg {
    background: var(--c-black);
    color: var(--c-white);
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

.ai-chat-input {
    display: flex;
    padding: 1rem;
    background: var(--c-white);
    border-top: 1px solid #EAEAEA;
}

.ai-chat-input input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.ai-chat-input button {
    background: var(--c-gold);
    color: var(--c-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background var(--transition-fast);
}

.ai-chat-input button:hover {
    background: var(--c-black);
}

@media (max-width: 767px) {
    .ai-chat-widget {
        bottom: 20px;
        right: 80px;
    }
    
    .ai-chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .ai-chat-window {
        width: 300px;
        bottom: 70px;
        right: -60px;
    }
}

/* ===== SEGUROS SERVICES MODAL ===== */
.seguros-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.seguros-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.seguros-modal {
    position: relative;
    width: 92%;
    max-width: 960px;
    max-height: 90vh;
    background: #fff;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.seguros-modal-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.seguros-modal-close:hover {
    background: var(--c-gold);
    color: var(--c-black);
    transform: rotate(90deg);
}

/* Video Header */
.seguros-modal-video-wrap {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.seguros-modal-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seguros-modal-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
}

.seguros-modal-video-text {
    max-width: 600px;
}

.seguros-modal-video-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--c-gold);
    margin-bottom: 0.75rem;
}

.seguros-modal-video-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}

.seguros-video-play-btn {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.seguros-video-play-btn:hover {
    background: var(--c-gold);
    color: var(--c-black);
    border-color: var(--c-gold);
}

/* Modal Body */
.seguros-modal-body {
    padding: 3rem 3rem 2rem 3rem;
}

.seguros-modal-divider {
    width: 60px;
    height: 1px;
    background: var(--c-gold);
    margin: 2.5rem auto;
}

/* Narrative */
.seguros-narrative h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--c-black);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.seguros-narrative-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--c-gold);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.seguros-narrative-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #444;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1rem;
}

.seguros-narrative-accent {
    font-weight: 600 !important;
    color: var(--c-gold) !important;
    font-size: 1.1rem !important;
    text-align: center !important;
    margin-top: 1.5rem !important;
}

/* Services Grid */
.seguros-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.seguros-srv-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-black);
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.seguros-srv-col-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: #888;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.seguros-srv-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    cursor: default;
}

.seguros-srv-item:hover {
    padding-left: 0.5rem;
    border-bottom-color: var(--c-gold);
}

.seguros-srv-item:hover .seguros-srv-icon {
    color: var(--c-gold);
}

.seguros-srv-icon {
    font-size: 1.5rem;
    color: #999;
    min-width: 32px;
    padding-top: 2px;
    transition: color 0.3s ease;
}

.seguros-srv-item h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-black);
    margin: 0 0 0.3rem 0;
}

.seguros-srv-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Value Added */
.seguros-value h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-black);
    text-align: center;
    margin-bottom: 2rem;
}

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

.seguros-value-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.seguros-value-item:hover {
    border-color: var(--c-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.seguros-value-icon {
    font-size: 2rem;
    color: var(--c-gold);
    margin-bottom: 1rem;
}

.seguros-value-item h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-black);
    margin: 0 0 0.5rem 0;
}

.seguros-value-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Results */
.seguros-results h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-black);
    text-align: center;
    margin-bottom: 2rem;
}

.seguros-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.seguros-result-item {
    padding: 1.5rem;
    background: var(--c-black);
}

.seguros-result-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--c-gold);
    margin-bottom: 0.25rem;
}

.seguros-result-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

/* CTA */
.seguros-cta-section {
    text-align: center;
    padding: 2.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.seguros-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    background: #25D366;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.seguros-cta-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.seguros-cta-call {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #888;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.seguros-cta-call:hover {
    color: var(--c-gold);
}

/* Legal */
.seguros-modal-legal {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    color: #aaa;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 767px) {
    .seguros-modal {
        width: 100%;
        max-height: 100vh;
        max-width: 100%;
    }
    .seguros-modal-video-wrap {
        height: 250px;
    }
    .seguros-modal-video-overlay h2 {
        font-size: 1.3rem;
    }
    .seguros-modal-body {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }
    .seguros-services {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .seguros-value-grid {
        grid-template-columns: 1fr;
    }
    .seguros-results-grid {
        grid-template-columns: 1fr;
    }
    .seguros-modal-close {
        top: 0.75rem;
        right: 0.75rem;
    }
}

/* --- Tutelas Modal Specific Card Adjustments --- */
#tutelasModal .seguros-value-item h5 {
    font-size: 1.25rem !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
    color: var(--c-black);
}

#tutelasModal .seguros-value-item p {
    font-size: 1.05rem !important;
    color: #444 !important;
    line-height: 1.6 !important;
    text-align: justify !important;
}



/* --- Premium Aesthetic Upgrades (Hover 3D) --- */

.seguros-value-item {
    background: var(--c-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    padding: 2.5rem 2rem;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    overflow: hidden; /* For magnetic glow */
}

/* Magnetic Hover Glow */
.seguros-value-item::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle closest-side, rgba(184, 150, 74, 0.12), transparent);
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.seguros-value-item:hover::before {
    opacity: 1;
}

.seguros-value-item:hover {
    transform: translateY(-8px);
    border-color: var(--c-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.seguros-modal-body, .seguros-modal-video-wrap, .seguros-modal-close {
    position: relative;
    z-index: 3;
}

/* --- Cinematic Aesthetic Upgrades --- */
/* Splash Screen */
.elite-splash-screen {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: var(--c-black);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), visibility 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.elite-splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.splash-logo-img {
    height: 145px;
    width: auto;
    object-fit: contain;
    animation: revealUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    transform: translateY(40px);
    opacity: 0;
    margin-bottom: 0.5rem;
    filter: brightness(0) invert(1);
}

.splash-line {
    width: 0;
    height: 1px;
    background-color: var(--c-gold);
    margin-top: 2rem;
    animation: expandLine 1s cubic-bezier(0.25, 1, 0.5, 1) 0.8s forwards;
}

@keyframes revealUp {
    to { transform: translateY(0); opacity: 1; }
}

@keyframes expandLine {
    to { width: 150px; }
}

/* Deep iOS Blur Site Scale */
body.modal-open-blur {
    background-color: var(--c-black);
}
body > *:not(.seguros-modal-overlay):not(#elite-splash-screen):not(.elite-film-grain):not(.cursor-dot):not(.cursor-outline) {
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
    transform-origin: center center;
}
body.modal-open-blur > *:not(.seguros-modal-overlay):not(#elite-splash-screen):not(.elite-film-grain):not(.cursor-dot):not(.cursor-outline) {
    transform: scale(0.97);
    filter: blur(8px) brightness(0.6);
}

/* Staggered Entrance */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
}
.seguros-modal-overlay.active .stagger-item {
    opacity: 1;
    transform: translateY(0);
}

/* Film Grain Overlay */
.elite-film-grain {
    position: fixed;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 99998;
    animation: grainShift 8s steps(10) infinite;
    mix-blend-mode: multiply;
}

@keyframes grainShift {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}
