/* ================================================
   GRAN PORVENIR 2030 - ULTRA INNOVADOR
   Neo-Modernista con Glassmorphism Avanzado
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Colores de marca */
    --red-primary: #C40C0C;
    --red-dark: #9E0F0F;
    --green-primary: #3d9c21;
    --green-light: #5cb85c;
    
    /* Colores base */
    --white: #ffffff;
    --black: #0a0a0a;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Efectos */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    /* Tipografía */
    --font-display: 'Montserrat', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--gray-50);
    color: var(--gray-900);
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

/* ================================================
   NAVEGACIÓN GLASSMORPHISM
   ================================================ */
.nav-glass {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1400px;
    z-index: 1000;
    animation: navSlideDown 0.8s ease;
}

@keyframes navSlideDown {
    from { transform: translate(-50%, -100px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.nav-inner {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.logo-container .logo {
    height: 50px;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-800);
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red-primary), var(--green-primary));
    transition: width 0.3s ease;
}

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

.btn-nav-cta {
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.btn-nav-cta::before { display: none; }

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ================================================
   HERO SECTION ULTRA
   ================================================ */
.hero-ultra {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 2rem 4rem;
    overflow: hidden;
}

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

.mesh-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(at 20% 30%, rgba(196, 12, 12, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(61, 156, 33, 0.12) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(196, 12, 12, 0.08) 0px, transparent 50%);
    animation: meshFloat 20s ease-in-out infinite;
}

@keyframes meshFloat {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: shapeFloat 15s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--red-primary);
    top: -10%;
    right: -5%;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--green-primary);
    bottom: -10%;
    left: -5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--red-dark);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -30px); }
    50% { transform: translate(-20px, 20px); }
    75% { transform: translate(40px, 10px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--red-primary);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--red-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--gray-900);
}

.title-line {
    display: block;
}

.title-gradient {
    background: linear-gradient(135deg, var(--red-primary), var(--black));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-800);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-primary-glass,
.btn-outline-glass {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary-glass {
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-lg);
}

.btn-primary-glass:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    color: var(--gray-900);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.btn-outline-glass:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-4px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    width: fit-content;
    box-shadow: var(--shadow-md);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--red-primary);
    font-family: var(--font-display);
}
.span-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--red-primary);
    font-family: var(--font-display);
    text-align:right;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--gray-800);
    font-weight: 500;
}

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

/* Bento Grid Visual */
.hero-visual-bento {
    position: relative;
}

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

.bento-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all 0.4s ease;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-item:hover img {
    transform: scale(1.1);
}

.bento-large {
    grid-row: span 2;
}

.bento-medium {
    grid-row: span 1;
}

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.bento-item:hover .bento-overlay {
    transform: translateY(0);
}

.bento-overlay h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.bento-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-800);
    font-size: 0.85rem;
    font-weight: 500;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--red-primary);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--red-primary);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* ================================================
   PRODUCTOS SECTION - GLASS CARDS
   ================================================ */
.products-stack {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.section-header-glass {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--red-primary);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.section-title-large {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
}

.text-gradient {
    background: linear-gradient(135deg, var(--red-primary), var(--black));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient2 {
    background: linear-gradient(135deg, var(--green-primary), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.product-card-glass.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.card-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-glass:hover .card-image-wrapper img {
    transform: scale(1.08);
}

.card-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.card-content-glass {
    padding: 2rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.card-content-glass h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.card-content-glass p {
    font-size: 0.95rem;
    color: var(--gray-800);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 1rem;
}

/* ================================================
   SUCURSALES SECTION
   ================================================ */
.branches-ultra {
    padding: 8rem 2rem;
    background: var(--gray-50);
}

.branches-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.branch-card-glass {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.branch-card-glass:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.branch-card-glass.featured {
    background: linear-gradient(135deg, rgba(196, 12, 12, 0.08), rgba(61, 156, 33, 0.08));
    border: 2px solid var(--red-primary);
}

.branch-card-glass.new {
    border: 2px solid var(--green-primary);
}

.branch-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(196, 12, 12, 0.1);
}

.branch-featured-badge,
.branch-new-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
}

.branch-new-badge {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
}

.branch-icon-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.branch-icon-badge i {
    font-size: 2rem;
    color: var(--white);
}

.branch-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.branch-address {
    font-size: 0.95rem;
    color: var(--gray-800);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.branch-address i {
    color: var(--red-primary);
}
.branch-address span {
    color: var(--red-primary);
    font-weight: 700;
}

.branch-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    padding: 0.4rem 1rem;
    background: rgba(196, 12, 12, 0.08);
    border: 1px solid rgba(196, 12, 12, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red-primary);
}

.branch-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.branch-link:hover {
    gap: 1rem;
}

/* ================================================
   FEATURES MINIMAL
   ================================================ */
.features-minimal {
    padding: 8rem 2rem;
    background: var(--white);
}

.features-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon-minimal {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon-minimal {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-minimal i {
    font-size: 2.5rem;
    color: var(--white);
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--gray-800);
    line-height: 1.6;
}

/* ================================================
   CTA APP SECTION
   ================================================ */
.cta-app-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    position: relative;
    overflow: hidden;
}

.cta-app-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-app-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.cta-app-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-app-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.app-buttons-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.app-store-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.app-store-btn i {
    font-size: 2.5rem;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-label {
    font-size: 0.75rem;
    opacity: 0.8;
}

.app-name {
    font-size: 1.1rem;
    font-weight: 700;
}

.app-mockup-container {
    position: relative;
    width: 300px;
    height: 400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.app-mockup-icon {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.5);
}

.app-mockup-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* ================================================
   FOOTER ULTRA MODERN
   ================================================ */
.footer-ultra {
    background: var(--gray-900);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--red-primary);
    transform: translateY(-4px);
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a,
.footer-column li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--red-primary);
}

.footer-column i {
    margin-right: 0.2rem;
    color: var(--red-primary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

/* ================================================
   FLOATING SOCIAL
   ================================================ */
.social-float {
    position: fixed;
    right: 1rem;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.float-social-btn {
    width: 55px;
    height: 55px;
    background: var(--red-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.float-social-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.float-social-btn.whatsapp {
    background: var(--green-primary);
}

/* ================================================
   ANIMATIONS
   ================================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

[data-animate]:nth-child(2) { animation-delay: 0.1s; }
[data-animate]:nth-child(3) { animation-delay: 0.2s; }
[data-animate]:nth-child(4) { animation-delay: 0.3s; }
[data-animate]:nth-child(5) { animation-delay: 0.4s; }

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

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .hero-content,
    .cta-app-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual-bento {
        order: -1;
    }
    
    .bento-grid {
        grid-template-rows: repeat(2, 200px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.4s ease;
        box-shadow: var(--shadow-xl);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hero-ultra {
        padding: 100px 1.5rem 3rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary-glass,
    .btn-outline-glass {
        width: 100%;
        justify-content: center;
    }
    
    .product-cards-container {
        grid-template-columns: 1fr;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .social-float {
        right: 1rem;
        bottom: 1rem;
    }
    
    .app-buttons-group {
        flex-direction: column;
        width: 100%;
    }
    
    .app-store-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title-large {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-divider {
        display: none;
    }
}
