/**
 * TecnoFibras - Componentes Específicos
 */

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #000;
    color: var(--white);
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: url('../img/Jacuzzi-logo.jpg') center/cover no-repeat;
    opacity: 0.5;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(97, 4, 10, 0.6) 0%, 
        rgba(18, 19, 63, 0.6) 50%,
        rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: var(--spacing-3xl) var(--spacing-2xl);
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
    color: #ffffff;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-3xl);
    opacity: 1;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.6;
    font-weight: 400;
}

.hero-content .btn {
    animation: fadeInUp 1s ease 0.4s both;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(0);
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    background: var(--primary-wine);
    border: none;
}

.hero-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(97, 4, 10, 0.5);
    background: #7a0510;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.hero-scroll-indicator i {
    width: 40px;
    height: 40px;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero-scroll-indicator:hover i {
    opacity: 1;
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.8s both;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    width: 32px;
    height: 32px;
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-float i {
        width: 28px;
        height: 28px;
    }
}

/* ========================================
   CATALOG SECTION
   ======================================== */
.catalog-section {
    padding: var(--spacing-3xl) 0;
    background: #5a6b7d;
    color: white;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-2xl);
    color: var(--primary-navy);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-wine), var(--primary-navy));
    border-radius: 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
}

.catalog-card {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.catalog-card:nth-child(1) {
    animation-delay: 0.1s;
}

.catalog-card:nth-child(2) {
    animation-delay: 0.2s;
}

.catalog-card:nth-child(3) {
    animation-delay: 0.3s;
}

.catalog-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(97, 4, 10, 0.15);
    border-color: rgba(97, 4, 10, 0.3);
}

.catalog-card-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.catalog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.catalog-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 1;
}

.catalog-card:hover .catalog-card-image img {
    transform: scale(1.1);
}

.catalog-card-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-xl);
    background: transparent;
}

.catalog-card-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.catalog-card-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.catalog-card-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.catalog-card-actions .btn {
    font-size: 0.95rem;
    padding: 0.6rem 1.25rem;
    background: var(--primary-wine);
    color: white;
    border: none;
}

.catalog-card-actions .btn:hover {
    background: #7a0510;
    transform: translateY(-2px);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: var(--spacing-3xl) 0;
    background: #5a6b7d;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(97, 4, 10, 0.5) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(18, 19, 63, 0.6) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.section-title-white {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-2xl);
    color: white;
    text-align: center;
}

.about-text-center {
    max-width: 800px;
    margin: 0 auto var(--spacing-3xl);
}

.about-text-center p {
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-size: 1.05rem;
}

.values-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-2xl);
    color: white;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-xl);
    background: rgba(100, 110, 130, 0.4);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(100, 110, 130, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background: var(--primary-wine);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(97, 4, 10, 0.4);
}

.value-icon i {
    width: 40px;
    height: 40px;
    color: white;
}

.value-card h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

/* ========================================
   ALLIANCES SECTION (CUSTOM)
   ======================================== */
.alliance-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alliance-card.active-alliance:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-alliances {
    margin-bottom: var(--spacing-3xl);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    padding: var(--spacing-3xl) 0;
    background: #5a6b7d;
    color: white;
    position: relative;
    overflow: hidden;
}

.section-subtitle-white {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-3xl);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form {
    background: rgba(100, 110, 130, 0.3);
    backdrop-filter: blur(10px);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.quote-form select {
    cursor: pointer;
}

.quote-form select option {
    background: var(--primary-navy);
    color: white;
}

.quote-form button {
    width: 100%;
    background: var(--primary-wine);
    color: white;
    padding: var(--spacing-md);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-form button:hover {
    background: #7a0510;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(97, 4, 10, 0.4);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-info-card {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: rgba(100, 110, 130, 0.3);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: rgba(100, 110, 130, 0.4);
    transform: translateX(5px);
}

.contact-info-card i {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--primary-wine);
}

.contact-info-card h4 {
    color: white;
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
    font-weight: 600;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-social-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: var(--spacing-md);
}

/* ========================================
   AUTH PAGES
   ======================================== */

/* Animaciones personalizadas para Auth */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatCard {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes slideInFromLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInFromRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Clases de utilidad para animaciones de scroll */
.animate-left { opacity: 0; }
.animate-left.animate-in { animation: slideInFromLeft 0.8s ease-out forwards; }

.animate-right { opacity: 0; }
.animate-right.animate-in { animation: slideInFromRight 0.8s ease-out forwards; }

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Gradiente animado más rico y profundo */
    background: linear-gradient(-45deg, #0f172a, #1e1b4b, #310b0b, #1a1c5a);
    background-size: 400% 400%;
    animation: gradientBG 12s ease infinite;
    padding: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

/* Partículas flotantes decorativas (pseudo-elementos mejorados) */
.auth-page::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(97, 4, 10, 0.25) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: floatCard 8s ease-in-out infinite reverse;
}

.auth-page::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: floatCard 10s ease-in-out infinite;
}

.auth-container {
    width: 100%;
    max-width: 480px;
    position: relative;
    z-index: 1;
    perspective: 1000px; /* Para efectos 3D sutiles */
}

.auth-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.4) inset; /* Borde brillante interior */
    border: 1px solid rgba(255, 255, 255, 0.2);
    
    /* Animación combinada: Entrada + Flotación suave */
    animation: 
        fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
        floatCard 6s ease-in-out infinite 1s; /* Empieza a flotar después de entrar */
    transform-origin: center center;
}

.auth-title {
    font-size: 2rem;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-weight: 800;
    background: linear-gradient(to right, var(--primary-navy), var(--primary-wine));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Animación de entrada */
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.auth-form {
    margin-bottom: var(--spacing-lg);
}

/* Animación en cascada para los inputs (Efecto Cremallera) */
.auth-form .form-group {
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    /* La animación se define en los hijos nth-child */
}

/* Impares: Izquierda a Derecha */
.auth-form .form-group:nth-child(odd) {
    animation: slideInFromLeft 0.6s ease-out forwards;
}

/* Pares: Derecha a Izquierda */
.auth-form .form-group:nth-child(even) {
    animation: slideInFromRight 0.6s ease-out forwards;
}

/* Delays escalonados */
.auth-form .form-group:nth-child(1) { animation-delay: 0.2s; }
.auth-form .form-group:nth-child(2) { animation-delay: 0.3s; }
.auth-form .form-group:nth-child(3) { animation-delay: 0.4s; }
.auth-form .form-group:nth-child(4) { animation-delay: 0.5s; }

.auth-form label {
    display: block;
    color: var(--gray-700);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.auth-form input:focus + label {
    color: var(--primary-navy);
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    color: var(--gray-800);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-form input:hover {
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.auth-form input::placeholder {
    color: #94a3b8;
    transition: opacity 0.3s;
}

.auth-form input:focus::placeholder {
    opacity: 0.5;
}

.auth-form input:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 4px rgba(18, 19, 63, 0.1);
    transform: translateY(-2px);
}

.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.toggle-password:hover {
    color: var(--primary-navy);
    background: rgba(18, 19, 63, 0.05);
}

.forgot-password {
    display: block;
    text-align: right;
    color: var(--primary-wine);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    transition: all 0.3s ease;
    
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.forgot-password:hover {
    color: var(--primary-navy);
    text-decoration: underline;
    transform: translateX(-3px);
}

.auth-submit {
    background: linear-gradient(135deg, var(--primary-wine) 0%, #4a0408 100%);
    color: white;
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 6px -1px rgba(97, 4, 10, 0.3);
    position: relative;
    overflow: hidden;
    
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.7s forwards;
}

.auth-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.auth-submit:hover::after {
    left: 100%;
}

.auth-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px -5px rgba(97, 4, 10, 0.5);
    background: linear-gradient(135deg, #7a0510 0%, #61040a 100%);
}

.auth-submit:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1rem;
    background: #ffffff;
    color: #1f2937;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: var(--spacing-lg);
    gap: 12px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    text-decoration: none;
    
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.9s forwards;
}

.btn-google:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-google svg {
    width: 20px;
    height: 20px;
}

.auth-footer {
    text-align: center;
    margin-top: var(--spacing-xl);
    color: var(--gray-600);
    font-size: 0.95rem;
    padding-top: var(--spacing-lg);
    border-top: 1px solid #e2e8f0;
    
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

.auth-footer a {
    color: var(--primary-navy);
    font-weight: 700;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: var(--primary-wine);
    text-decoration: underline;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 480px) {
    .auth-card {
        padding: var(--spacing-xl);
    }
    
    .auth-title {
        font-size: 1.75rem;
    }
}

/* ========================================
   ALLIANCES SECTION
   ======================================== */
.alliances-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.alliances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
}

.alliance-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.alliance-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-wine);
}

.alliance-card img {
    max-width: 120px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto var(--spacing-md);
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.alliance-card:hover img {
    filter: grayscale(0%);
}

.alliance-card h3 {
    font-size: 1rem;
    color: var(--primary-navy);
    margin-bottom: var(--spacing-xs);
}

.alliance-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title-white {
        font-size: 2rem;
    }
    
    .values-title {
        font-size: 1.5rem;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .alliances-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-text-center p {
        font-size: 1rem;
    }
}

/* ========================================
   PRODUCTS PAGE
   ======================================== */
.catalog-page {
    padding: var(--spacing-3xl) 0;
}

.catalog-filter {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.filter-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    background: var(--gray-100);
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover {
    background: var(--gray-200);
}

.filter-btn.active {
    background: var(--primary-wine);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 200px;
    background: var(--gray-100);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    padding: var(--spacing-lg);
}

.product-content h3 {
    color: var(--primary-navy);
    margin-bottom: var(--spacing-sm);
}

.product-content p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
}

.product-specs {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--gray-600);
    font-size: 0.875rem;
}

.product-specs i {
    width: 16px;
    height: 16px;
}

.product-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

/* ========================================
   AUTH PAGES
   ======================================== */
.auth-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3xl) 0;
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

.auth-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.auth-title {
    font-size: 2rem;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.auth-form {
    margin-bottom: var(--spacing-lg);
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: var(--spacing-xl) 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gray-300);
}

.auth-divider span {
    position: relative;
    background: var(--white);
    padding: 0 var(--spacing-md);
    color: var(--gray-500);
}

.auth-footer {
    text-align: center;
    color: var(--gray-600);
}

.link-primary {
    color: var(--primary-wine);
    font-weight: 500;
}

.link-primary:hover {
    text-decoration: underline;
}

.link-secondary {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.link-secondary:hover {
    color: var(--primary-wine);
}

/* ========================================
   BLOG
   ======================================== */
.blog-page {
    padding: var(--spacing-3xl) 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-2xl);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    background: var(--gray-100);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: var(--spacing-lg);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--gray-600);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.blog-author img,
.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
}

.author-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-wine);
    color: var(--white);
    font-weight: 600;
}

.blog-content h2 {
    color: var(--primary-navy);
    margin-bottom: var(--spacing-sm);
}

.blog-content p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-count {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ========================================
   DASHBOARD
   ======================================== */
.dashboard-page {
    padding: var(--spacing-3xl) 0;
}

.dashboard-header {
    margin-bottom: var(--spacing-2xl);
}

.user-welcome {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.user-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-wine);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
}

.dashboard-tabs {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    border-bottom: 2px solid var(--gray-200);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--gray-600);
    font-weight: 500;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--primary-wine);
}

.tab-btn.active {
    color: var(--primary-wine);
    border-bottom-color: var(--primary-wine);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.quotations-list,
.comments-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.quotation-card,
.comment-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.quotation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-contacted {
    background: #dbeafe;
    color: #1e40af;
}

.status-completed {
    background: #d1fae5;
    color: #065f46;
}

.empty-state {
    text-align: center;
    padding: var(--spacing-3xl);
    color: var(--gray-500);
}

.empty-state i {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    color: var(--gray-400);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .catalog-grid,
    .products-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-tabs {
        overflow-x: auto;
    }
}
