/* Reset y configuración base - v1.0 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores del manual de identidad */
    --color-ciruleo: #047BA4;
    --color-azul-golfo: #040453;
    --color-turquesa: #5BE3E4;
    --color-hoja-agua: #9BE0E6;
    --color-blanco: #FFFFFF;
    
    /* Fuentes */
    --font-logo: 'Lobster', cursive;
    --font-titulo: 'Montserrat', sans-serif;
    --font-subtitulo: 'Poppins', sans-serif;
    --font-cuerpo: 'Muli', sans-serif;
}

body {
    font-family: var(--font-cuerpo);
    line-height: 1.6;
    color: var(--color-azul-golfo);
    background-color: var(--color-blanco);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, var(--color-ciruleo), var(--color-azul-golfo));
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-logo);
    font-size: 1.5rem;
    color: var(--color-blanco);
    font-weight: 400;
}

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

.nav-link {
    color: var(--color-blanco);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: var(--font-titulo);
}

.nav-link:hover {
    color: var(--color-turquesa);
}

.nav-link-admin {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link-admin:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-blanco);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-blanco);
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Section */
.main-section {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #5BE3E4 0%, #9BE0E6 50%, #047BA4 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background Shapes */
.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(60px);
    animation: float-shape 20s infinite ease-in-out;
    will-change: transform;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: 7s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

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

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-azul-golfo);
    animation: badge-pulse 2s infinite;
}

.badge-icon {
    width: 20px;
    height: 20px;
    color: var(--color-ciruleo);
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title-brand {
    font-family: var(--font-logo);
    font-size: 4.5rem;
    background: linear-gradient(135deg, var(--color-azul-golfo), var(--color-ciruleo));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: title-entrance 1s ease-out;
}

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

.hero-main-phrase {
    font-family: var(--font-titulo);
    font-size: 2.5rem;
    color: var(--color-azul-golfo);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    animation: phrase-entrance 1s ease-out 0.2s both;
}

.highlight-text {
    color: var(--color-blanco);
    text-shadow: 2px 2px 8px rgba(4, 123, 164, 0.4);
    position: relative;
    display: inline-block;
}

@keyframes phrase-entrance {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subphrase {
    font-size: 1.25rem;
    color: var(--color-azul-golfo);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    animation: subphrase-entrance 1s ease-out 0.4s both;
}

@keyframes subphrase-entrance {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.2rem 1.8rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.feature-animate {
    animation: feature-entrance 0.6s ease-out both;
}

.feature:nth-child(1) { animation-delay: 0.6s; }
.feature:nth-child(2) { animation-delay: 0.8s; }
.feature:nth-child(3) { animation-delay: 1s; }

@keyframes feature-entrance {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(4, 123, 164, 0.25);
    border-color: var(--color-turquesa);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-turquesa), var(--color-ciruleo));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-svg {
    width: 24px;
    height: 24px;
    color: var(--color-blanco);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: left;
}

.feature-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-azul-golfo);
}

.feature-subtitle {
    font-size: 0.85rem;
    color: var(--color-ciruleo);
    font-weight: 400;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: cta-entrance 1s ease-out 1.2s both;
}

@keyframes cta-entrance {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-azul-golfo), var(--color-ciruleo));
    color: var(--color-blanco);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(4, 7, 83, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-hero:hover::before {
    left: 100%;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(4, 7, 83, 0.4);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary-hero:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-azul-golfo);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    border: 2px solid var(--color-azul-golfo);
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    background: var(--color-azul-golfo);
    color: var(--color-blanco);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(4, 7, 83, 0.2);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-azul-golfo);
    font-size: 0.85rem;
    font-weight: 500;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--color-azul-golfo);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--color-azul-golfo);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* About Us Section - Modern Design */
.about-section {
    padding: 0;
    background: var(--color-blanco);
    position: relative;
}

.about-background {
    width: 100%;
    min-height: 600px;
    background-image: url('../img/SLIDER.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(155, 224, 230, 0.15) 100%);
    backdrop-filter: blur(2px);
    z-index: 1;
}

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

/* About Header */
.about-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 0.8s ease-out;
}

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

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-azul-golfo), var(--color-ciruleo));
    color: var(--color-blanco);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(4, 123, 164, 0.3);
}

.about-badge-icon {
    width: 18px;
    height: 18px;
}

.about-title {
    font-size: 3rem;
    margin-bottom: 0;
}

.title-highlight {
    background: linear-gradient(135deg, var(--color-ciruleo), var(--color-turquesa));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Brand Profile Card - Modern */
.brand-profile-modern {
    max-width: 900px;
    margin: 0 auto 4rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.brand-profile-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(91, 227, 228, 0.2);
    position: relative;
    overflow: hidden;
}

.brand-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-ciruleo), var(--color-turquesa));
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-turquesa), var(--color-ciruleo));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-blanco);
}

.card-brand {
    font-family: var(--font-logo);
    font-size: 2.5rem;
    color: var(--color-azul-golfo);
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-description {
    color: var(--color-azul-golfo);
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(4, 123, 164, 0.1);
}

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

.stat-number-mini {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-ciruleo), var(--color-turquesa));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label-mini {
    display: block;
    font-size: 0.9rem;
    color: var(--color-ciruleo);
    font-weight: 500;
}

/* Mission and Vision - Modern Cards */
.mission-vision-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.mv-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.mission-card {
    border-top: 4px solid var(--color-ciruleo);
}

.mission-card:hover {
    border-color: var(--color-ciruleo);
}

.vision-card {
    border-top: 4px solid var(--color-turquesa);
}

.vision-card:hover {
    border-color: var(--color-turquesa);
}

.mv-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-turquesa), var(--color-ciruleo));
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-icon {
    width: 28px;
    height: 28px;
    color: var(--color-blanco);
}

.mv-content {
    flex: 1;
}

.mv-title {
    font-family: var(--font-titulo);
    font-size: 1.5rem;
    color: var(--color-azul-golfo);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.mv-text {
    color: var(--color-azul-golfo);
    line-height: 1.7;
    font-size: 1rem;
    opacity: 0.85;
}

/* About Image Section - Ultra Modern */
.about-image-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.image-container-modern {
    position: relative;
    padding: 2rem;
}

.image-frame {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(4, 123, 164, 0.2),
        0 10px 30px rgba(4, 7, 83, 0.1);
    transform: perspective(1000px) rotateX(0deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.8);
    background: linear-gradient(145deg, rgba(91, 227, 228, 0.1), rgba(4, 123, 164, 0.05));
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(91, 227, 228, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(4, 123, 164, 0.1) 100%
    );
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-frame:hover::before {
    opacity: 1;
}

.image-frame:hover {
    transform: perspective(1000px) rotateX(-2deg) translateY(-10px);
    box-shadow: 
        0 40px 100px rgba(4, 123, 164, 0.3),
        0 20px 50px rgba(4, 7, 83, 0.15);
    border-color: rgba(91, 227, 228, 0.6);
}

.about-delivery-img-modern {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 0;
}

.image-frame:hover .about-delivery-img-modern {
    transform: scale(1.03);
}

/* Decorative Elements */
.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-turquesa), var(--color-ciruleo));
    opacity: 0.15;
    filter: blur(40px);
    animation: float-deco 8s infinite ease-in-out;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    animation-delay: 2s;
}

@keyframes float-deco {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -20px) scale(1.1);
    }
    66% {
        transform: translate(-15px, 15px) scale(0.9);
    }
}

.deco-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--color-turquesa), transparent);
    opacity: 0.3;
    animation: slide-line 4s infinite ease-in-out;
}

.line-1 {
    width: 150px;
    height: 2px;
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.line-2 {
    width: 100px;
    height: 2px;
    bottom: 30%;
    right: -15px;
    animation-delay: 2s;
}

@keyframes slide-line {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateX(20px);
        opacity: 0.6;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.brand-phrase p {
    font-family: var(--font-titulo);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-azul-golfo);
    margin: 0;
    line-height: 1.4;
}

.quote-icon {
    font-size: 1.8rem;
    color: var(--color-ciruleo);
    font-family: Georgia, serif;
    font-weight: bold;
    opacity: 0.5;
}

/* Values Section */
.values-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(4, 123, 164, 0.12), transparent 26%),
        radial-gradient(circle at 82% 0%, rgba(91, 227, 228, 0.18), transparent 28%),
        linear-gradient(135deg, var(--color-hoja-agua), var(--color-turquesa));
}

.values-shell {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.values-top {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.values-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(4, 4, 83, 0.08);
    background: rgba(255, 255, 255, 0.65);
    color: var(--color-azul-golfo);
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.values-tag::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-ciruleo), var(--color-turquesa));
    box-shadow: 0 0 0 6px rgba(4, 123, 164, 0.12);
}

.values-lead {
    margin-top: 1rem;
    font-size: 1.05rem;
    color: var(--color-azul-golfo);
    line-height: 1.7;
}

.values-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 1.75rem;
    align-items: stretch;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.value-card {
    background: var(--color-blanco);
    padding: 1.35rem;
    border-radius: 16px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    border: 1px solid rgba(4, 123, 164, 0.08);
    box-shadow: 0 12px 35px rgba(4, 4, 83, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(91, 227, 228, 0.15), rgba(4, 123, 164, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(4, 4, 83, 0.15);
}

.value-card:hover::after {
    opacity: 1;
}

.value-icon-wrap {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(4, 123, 164, 0.16), rgba(4, 4, 83, 0.12));
    box-shadow: 0 10px 20px rgba(4, 4, 83, 0.1);
    position: relative;
    z-index: 1;
}

.value-icon-wrap img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12));
}

.value-copy {
    position: relative;
    z-index: 1;
}

.value-copy h3 {
    font-family: var(--font-titulo);
    font-size: 1.2rem;
    color: var(--color-azul-golfo);
    margin-bottom: 0.35rem;
    font-weight: 700;
}

.value-copy p {
    color: var(--color-ciruleo);
    line-height: 1.6;
    font-size: 0.97rem;
    margin: 0;
}

.values-visual {
    align-self: stretch;
}

.values-visual-card {
    height: 100%;
    background: linear-gradient(145deg, var(--color-ciruleo), var(--color-azul-golfo));
    color: var(--color-blanco);
    border-radius: 18px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(4, 4, 83, 0.35);
}

.values-visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(91, 227, 228, 0.25), transparent 35%);
    opacity: 0.6;
    pointer-events: none;
}

.values-visual-img {
    width: 100%;
    min-height: 240px;
    border-radius: 12px;
    background-image: url('../img/servicio-entrega.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.values-visual-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 4, 83, 0.05), rgba(4, 4, 83, 0.3));
}

.values-phrases {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    position: relative;
    z-index: 1;
}

.values-phrase {
    font-family: var(--font-titulo);
    font-size: 1.15rem;
    font-weight: 600;
    font-style: italic;
    color: var(--color-blanco);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

.values-note {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.25rem;
    font-weight: 600;
}

.values-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-turquesa);
    box-shadow: 0 0 0 6px rgba(91, 227, 228, 0.2);
    flex-shrink: 0;
}

/* Brand Phrases Section */
.phrases-section {
    padding: 80px 0;
    background: var(--color-blanco);
}

.phrases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.phrase-item {
    background: linear-gradient(135deg, var(--color-ciruleo), var(--color-azul-golfo));
    color: var(--color-blanco);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phrase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(4, 123, 164, 0.3);
}

.phrase-quote {
    font-size: 4rem;
    color: var(--color-turquesa);
    font-family: var(--font-logo);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.phrase-text {
    font-size: 1.2rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 0;
    background: var(--color-blanco);
    position: relative;
}

.services-background {
    width: 100%;
    min-height: 500px;
    background-image: url('../img/services.section.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

.services-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

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

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-azul-golfo), var(--color-ciruleo));
    color: var(--color-blanco);
}

.stats-section .section-title {
    color: var(--color-blanco) !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-weight: 700;
}

.stats-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--color-blanco);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: var(--font-titulo);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-turquesa);
    display: inline-block;
    margin-right: 0.5rem;
}

.stat-symbol {
    font-family: var(--font-titulo);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-turquesa);
    display: inline-block;
}

.stat-label {
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 500;
}

/* Process Section - Texto Plano */
.process-section {
    padding: 80px 0;
    background: var(--color-blanco);
}

.process-content-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

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

.process-title {
    font-family: var(--font-titulo);
    font-size: 1.5rem;
    color: var(--color-azul-golfo);
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-text {
    color: var(--color-ciruleo);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-hoja-agua), var(--color-turquesa));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-blanco);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.benefit-icon {
    background: var(--color-ciruleo);
    color: var(--color-blanco);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-text {
    font-weight: 500;
    color: var(--color-azul-golfo);
    font-family: var(--font-titulo);
}

/* Integrations Section - Modern Centered */
.integrations-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fcff 0%, #e8f7f9 100%);
    position: relative;
    overflow: hidden;
}

.integrations-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(91, 227, 228, 0.1), transparent);
    border-radius: 50%;
}

.integrations-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(4, 123, 164, 0.08), transparent);
    border-radius: 50%;
}

/* Header Modern */
.integrations-header-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.integration-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-azul-golfo), var(--color-ciruleo));
    color: var(--color-blanco);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(4, 123, 164, 0.25);
}

.badge-icon-modern {
    width: 18px;
    height: 18px;
}

.integration-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.title-accent {
    background: linear-gradient(135deg, var(--color-ciruleo), var(--color-turquesa));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.integration-description {
    font-size: 1.15rem;
    color: var(--color-azul-golfo);
    opacity: 0.85;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

/* Grid Modern - Centered */
.integrations-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Integration Card Modern */
.integration-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(91, 227, 228, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(91, 227, 228, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.integration-card-modern:hover .card-glow {
    opacity: 1;
}

.integration-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(4, 123, 164, 0.2);
    border-color: var(--color-turquesa);
}

.card-content-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Logo Wrapper */
.logo-wrapper-modern {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(91, 227, 228, 0.15), rgba(4, 123, 164, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(4, 123, 164, 0.15);
    transition: transform 0.3s ease;
}

.integration-card-modern:hover .logo-wrapper-modern {
    transform: scale(1.1) rotate(5deg);
}

.integration-logo-modern {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

/* Card Info */
.card-info-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.integration-badge-tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.integration-badge-tag.marketplace {
    background: rgba(255, 230, 0, 0.2);
    color: #c89500;
}

.integration-badge-tag.ecommerce {
    background: rgba(4, 123, 164, 0.15);
    color: var(--color-ciruleo);
}

.integration-name-modern {
    font-family: var(--font-titulo);
    font-size: 1.8rem;
    color: var(--color-azul-golfo);
    margin: 0;
    font-weight: 700;
}

.integration-desc-modern {
    font-size: 1rem;
    color: var(--color-azul-golfo);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

/* Card Features */
.card-features-modern {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(4, 123, 164, 0.1);
}

.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--color-azul-golfo);
    font-weight: 500;
}

.feature-icon-modern {
    width: 20px;
    height: 20px;
    color: var(--color-turquesa);
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-titulo);
    font-size: 2.5rem;
    text-align: center;
    color: var(--color-azul-golfo);
    margin-bottom: 3rem;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: var(--color-turquesa);
    background: rgba(255, 255, 255, 1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: var(--font-titulo);
    font-size: 1.5rem;
    color: var(--color-azul-golfo);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--color-ciruleo);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-hoja-agua), var(--color-turquesa));
}

.contact-subtitle {
    text-align: center;
    color: var(--color-azul-golfo);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-blanco);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-azul-golfo);
    font-family: var(--font-titulo);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--color-hoja-agua);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-cuerpo);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-ciruleo);
}

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

.char-counter {
    text-align: right;
    font-size: 0.9rem;
    color: var(--color-ciruleo);
    margin-top: 0.5rem;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    color: var(--color-azul-golfo);
    position: relative;
    padding-left: 35px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--color-blanco);
    border: 2px solid var(--color-hoja-agua);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-label:hover input ~ .checkmark {
    border-color: var(--color-ciruleo);
    background-color: var(--color-hoja-agua);
}

.checkbox-label input:checked ~ .checkmark {
    background-color: var(--color-ciruleo);
    border-color: var(--color-ciruleo);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--color-blanco);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

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

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-titulo);
    min-width: 150px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-ciruleo), var(--color-azul-golfo));
    color: var(--color-blanco);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(4, 123, 164, 0.3);
}

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

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

/* Footer */
.footer {
    position: relative;
    background: radial-gradient(circle at 15% 25%, rgba(91, 227, 228, 0.18), transparent 26%),
                radial-gradient(circle at 85% 15%, rgba(4, 123, 164, 0.25), transparent 28%),
                linear-gradient(135deg, #030334, #031f46 50%, #022f63);
    color: var(--color-blanco);
    padding: 4rem 0 2rem;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 40%);
    pointer-events: none;
}

.footer-shell {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.footer-brand {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
}

.footer-brand::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(91, 227, 228, 0.25), transparent 35%);
    opacity: 0.7;
    pointer-events: none;
}

.footer-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-ciruleo), var(--color-turquesa));
    color: #02122f;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.8rem;
    box-shadow: 0 8px 20px rgba(91, 227, 228, 0.35);
}

.footer-title {
    font-family: var(--font-titulo);
    font-size: 2rem;
    margin: 1rem 0 0.5rem;
}

.footer-lead {
    max-width: 540px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.35rem;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(135deg, var(--color-turquesa), var(--color-ciruleo));
    color: #02122f;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    box-shadow: 0 10px 25px rgba(4, 123, 164, 0.3);
}

.footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(4, 123, 164, 0.5);
}

.footer-btn.ghost {
    background: transparent;
    color: var(--color-blanco);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.footer-btn.ghost:hover {
    border-color: var(--color-turquesa);
    color: var(--color-turquesa);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

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

.footer-col h4 {
    font-family: var(--font-titulo);
    margin-bottom: 1rem;
    color: var(--color-turquesa);
    font-size: 1.1rem;
}

.footer-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    justify-items: center;
    text-align: center;
}

.footer-list a {
    color: var(--color-blanco);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-list a:hover {
    color: var(--color-turquesa);
}

.footer-chip {
    display: inline-block;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    background: rgba(91, 227, 228, 0.15);
    color: var(--color-turquesa);
    font-weight: 700;
    font-size: 0.8rem;
    margin-right: 0.4rem;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    justify-content: center;
}

.social-pill {
    padding: 0.55rem 0.9rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-blanco);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.social-pill:hover {
    transform: translateY(-2px);
    border-color: var(--color-turquesa);
    color: var(--color-turquesa);
}

.footer-note {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
}

.footer-badge {
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-turquesa);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.closing-phrase {
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--color-turquesa), var(--color-hoja-agua));
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.motivational-phrase {
    font-family: var(--font-titulo);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-azul-golfo);
    font-style: italic;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Media Queries para pantallas grandes */
@media (min-width: 1200px) {
    .brand-phrases {
        width: 85%;
        max-width: 420px;
        gap: 3.5rem;
    }

    .brand-phrase {
        padding: 1.3rem 1.8rem;
    }

    .phrase-1 {
        margin-left: -40px;
    }

    .phrase-2 {
        margin-right: -40px;
    }

    .brand-phrase p {
        font-size: 1rem;
    }

    .quote-icon {
        font-size: 2rem;
    }
}

/* Footer centrado en desktop */
@media (min-width: 769px) {
    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-lead {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-actions {
        justify-content: center;
    }
    
    .footer-col {
        text-align: center;
    }

    .footer-list {
        justify-items: center;
        text-align: center;
    }

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

    .footer-note {
        text-align: center;
    }
    
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .brand-phrases {
        width: 88%;
        max-width: 400px;
        gap: 2.5rem;
    }

    .phrase-1 {
        margin-left: -25px;
    }

    .phrase-2 {
        margin-right: -25px;
    }
}

/* Responsive Design - Mobile First (70% enfoque) */
@media (max-width: 768px) {
    /* Integrations Modern Responsive */
    .integration-title {
        font-size: 2rem;
    }

    .integration-description {
        font-size: 1rem;
    }

    .integrations-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .integration-card-modern {
        padding: 2rem;
    }

    .logo-wrapper-modern {
        width: 70px;
        height: 70px;
    }

    .integration-logo-modern {
        width: 45px;
        height: 45px;
    }

    .integration-name-modern {
        font-size: 1.5rem;
    }

    .integration-body {
        grid-template-columns: 1fr;
    }

    .integration-visual {
        order: -1;
    }

    .integration-badges {
        justify-content: center;
    }

    .nav-container {
        position: relative;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--color-azul-golfo);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

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

    /* Notification button always visible on mobile */
    .btn-notifications {
        position: fixed !important;
        right: 60px;
        top: 35px;
        transform: translateY(-50%);
        z-index: 1001;
        display: flex !important;
    }

    /* Logout button stays in mobile menu */
    .btn-logout {
        margin: 1rem auto;
        width: 80%;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title-brand {
        font-size: 3rem;
    }

    .hero-main-phrase {
        font-size: 1.8rem;
    }

    .hero-subphrase {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .feature {
        width: 100%;
        max-width: 350px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .shape-1 {
        width: 250px;
        height: 250px;
    }

    .shape-2 {
        width: 200px;
        height: 200px;
    }

    .shape-3 {
        width: 150px;
        height: 150px;
    }

    /* Optimize shapes for mobile performance */
    .shape {
        backdrop-filter: blur(30px);
        animation-duration: 30s;
    }

    /* About Section Responsive */
    .about-title {
        font-size: 2.5rem;
    }

    .about-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }

    .brand-profile-card {
        padding: 2rem;
    }

    .card-brand {
        font-size: 2rem;
    }

    .card-description {
        font-size: 1rem;
    }

    .card-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-number-mini {
        font-size: 1.5rem;
    }

    .mission-vision-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mv-card {
        padding: 2rem;
    }

    .image-container-modern {
        padding: 1rem;
    }

    .image-frame {
        border-radius: 20px;
        border-width: 2px;
    }

    .circle-1 {
        width: 150px;
        height: 150px;
        top: -40px;
        right: -40px;
    }

    .circle-2 {
        width: 100px;
        height: 100px;
        bottom: -20px;
        left: -20px;
    }

    .line-1,
    .line-2 {
        display: none;
    }

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

    .form-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

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

    .footer-actions {
        justify-content: center;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
    
    .delivery-highlight {
        grid-column: span 1;
        padding: 0;
    }
    
    .delivery-image-container {
        min-height: 300px;
    }
    
    .delivery-phrase-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    /* Notification button adjustments for small mobile screens */
    .btn-notifications {
        right: 50px;
        top: 35px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .notification-badge {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        min-width: 20px;
        top: 3px;
        right: 3px;
    }

    .hero-title-brand {
        font-size: 2.5rem;
    }

    .hero-main-phrase {
        font-size: 1.5rem;
    }

    .hero-subphrase {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.9rem;
    }

    .badge-icon {
        width: 16px;
        height: 16px;
    }

    /* Further optimize shapes for small mobile screens */
    .shape {
        backdrop-filter: blur(20px);
        animation-duration: 40s;
    }

    .shape-1 {
        width: 200px;
        height: 200px;
    }

    .shape-2 {
        width: 150px;
        height: 150px;
    }

    .shape-3 {
        width: 100px;
        height: 100px;
    }

    .feature {
        padding: 1rem 1.5rem;
    }

    .feature-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .feature-svg {
        width: 20px;
        height: 20px;
    }

    .feature-title {
        font-size: 0.95rem;
    }

    .feature-subtitle {
        font-size: 0.8rem;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Integrations Modern - Mobile Small */
    .integration-title {
        font-size: 1.8rem;
    }

    .integration-badge-modern {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }

    .badge-icon-modern {
        width: 16px;
        height: 16px;
    }

    .integration-description {
        font-size: 0.95rem;
    }

    .integrations-grid-modern {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .integration-card-modern {
        padding: 1.5rem;
    }

    .logo-wrapper-modern {
        width: 60px;
        height: 60px;
    }

    .integration-logo-modern {
        width: 40px;
        height: 40px;
    }

    .integration-name-modern {
        font-size: 1.3rem;
    }

    .integration-desc-modern {
        font-size: 0.9rem;
    }

    .feature-item-modern {
        font-size: 0.85rem;
    }

    .feature-icon-modern {
        width: 18px;
        height: 18px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }
    
    .checkbox-group {
        gap: 0.8rem;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
        padding-left: 30px;
    }
    
    .checkmark {
        height: 18px;
        width: 18px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }

    /* About Section Mobile */
    .brand-phrases {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: 2rem;
        gap: 1rem;
    }

    .brand-phrase {
        padding: 1rem;
    }

    .brand-phrase p {
        font-size: 0.85rem;
    }

    .quote-icon {
        font-size: 1.5rem;
    }

    .brand-profile-intro {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .brand-profile-title {
        font-size: 1.8rem;
    }

    .brand-profile-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* About Section - Mobile Small */
    .about-title {
        font-size: 2rem;
    }

    .about-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .brand-profile-card {
        padding: 1.5rem;
    }

    .card-brand {
        font-size: 1.8rem;
    }

    .card-description {
        font-size: 0.95rem;
    }

    .card-stats {
        gap: 1rem;
    }

    .stat-number-mini {
        font-size: 1.3rem;
    }

    .stat-label-mini {
        font-size: 0.8rem;
    }

    .mv-card {
        padding: 1.5rem;
    }

    .mv-title {
        font-size: 1.3rem;
    }

    .mv-text {
        font-size: 0.95rem;
    }

    .image-container-modern {
        padding: 0.5rem;
    }

    .image-frame {
        border-radius: 16px;
    }

    .circle-1 {
        width: 100px;
        height: 100px;
        top: -30px;
        right: -30px;
    }

    .circle-2 {
        width: 80px;
        height: 80px;
        bottom: -15px;
        left: -15px;
    }
    
    .stats-section .section-title {
        font-size: 2rem;
        text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    }
    
    .stats-subtitle {
        font-size: 1rem;
        text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }
    
    .process-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .process-title {
        font-size: 1.3rem;
    }
    
    .process-text {
        font-size: 0.95rem;
    }
    
    .hero-main-phrase {
        font-size: 1.8rem;
    }
    
    .hero-subphrase {
        font-size: 1.1rem;
    }
    
    .mission-vision-container {
        gap: 1.5rem;
        margin: 2rem auto;
    }
    
    .mission-vision-title {
        font-size: 1.3rem;
    }
    
    .mission-vision-text {
        font-size: 0.95rem;
    }
    
    .values-layout {
        grid-template-columns: 1fr;
    }

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

    .value-card {
        padding: 1.1rem;
    }

    .value-icon-wrap {
        width: 56px;
        height: 56px;
    }

    .value-icon-wrap img {
        width: 34px;
        height: 34px;
    }

    .values-visual {
        order: -1;
    }

    .values-visual-card {
        padding: 1.25rem;
    }

    .values-visual-img {
        min-height: 220px;
    }

    .values-phrases {
        gap: 0.65rem;
    }

    .values-phrase {
        font-size: 1.05rem;
    }
    
    .phrases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .phrase-item {
        padding: 2rem;
    }
    
    .phrase-text {
        font-size: 1.1rem;
    }
    
    .motivational-phrase {
        font-size: 1.3rem;
    }
    
    .value-item img {
        width: 45px;
        height: 45px;
    }
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.service-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ===================================
   DASHBOARD STYLES
   =================================== */

/* Dashboard Section */
.dashboard-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--color-hoja-agua), var(--color-turquesa));
    min-height: 100vh;
}

.dashboard-title {
    font-family: var(--font-logo);
    font-size: 2.5rem;
    color: var(--color-azul-golfo);
    text-align: center;
    margin-bottom: 1rem;
}

.dashboard-subtitle {
    text-align: center;
    color: var(--color-ciruleo);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Notifications Button */
.btn-notifications {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-blanco);
    border: none;
    padding: 10px 15px;
    border-radius: 25px;
    font-family: var(--font-titulo);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.btn-notifications:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.notification-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--color-blanco);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-titulo);
    border: 2px solid var(--color-azul-golfo);
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
    animation: pulse 2s infinite;
    min-width: 22px;
}

.notification-badge.hidden {
    display: none;
}

.notification-badge.animate {
    animation: bounce 0.5s ease;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(231, 76, 60, 0.6);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

/* Logout Button */
.btn-logout {
    background: linear-gradient(135deg, var(--color-turquesa), var(--color-hoja-agua));
    color: var(--color-azul-golfo);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-family: var(--font-titulo);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-logout:hover {
    background: linear-gradient(135deg, var(--color-hoja-agua), var(--color-turquesa));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(91, 227, 228, 0.3);
}

/* Clear Data Button */
.btn-clear-data {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--color-blanco);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: var(--font-titulo);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn-clear-data:hover {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Dashboard Controls */
.dashboard-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Stats Counter */
.stats-counter {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.counter-item {
    background: var(--color-blanco);
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    min-width: 180px;
}

.counter-number {
    display: block;
    font-family: var(--font-titulo);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-ciruleo);
    margin-bottom: 0.5rem;
}

.counter-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-azul-golfo);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-input,
.filter-select {
    padding: 12px 15px;
    border: 2px solid var(--color-blanco);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-cuerpo);
    background: var(--color-blanco);
    color: var(--color-azul-golfo);
    transition: border-color 0.3s ease;
}

.search-input {
    flex: 1;
    min-width: 250px;
}

.filter-select {
    min-width: 200px;
}

.search-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--color-ciruleo);
}

/* Dashboard Table */
.dashboard-table-wrapper {
    background: var(--color-blanco);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow-x: auto;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.dashboard-table thead {
    background: linear-gradient(135deg, var(--color-ciruleo), var(--color-azul-golfo));
}

.dashboard-table th {
    padding: 1rem;
    text-align: left;
    font-family: var(--font-titulo);
    font-weight: 600;
    color: var(--color-blanco);
    white-space: nowrap;
}

.dashboard-table tbody tr {
    border-bottom: 1px solid var(--color-hoja-agua);
    transition: background-color 0.3s ease;
}

.dashboard-table tbody tr:hover {
    background-color: var(--color-hoja-agua);
}

.dashboard-table td {
    padding: 1rem;
    color: var(--color-azul-golfo);
    vertical-align: top;
}

.dashboard-table td:last-child {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Badges for package types */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 2px;
    white-space: nowrap;
}

.badge-mercado-libre {
    background: #FFE600;
    color: #333;
}

.badge-ecommerce {
    background: var(--color-ciruleo);
    color: var(--color-blanco);
}

.badge-privado {
    background: var(--color-turquesa);
    color: var(--color-azul-golfo);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.btn-delete {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-delete:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}

.btn-delete:active {
    transform: translateY(0);
}

/* No data message */
.no-data-message {
    display: none;
    text-align: center;
    padding: 3rem;
    background: var(--color-blanco);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.no-data-message.show {
    display: block;
}

.no-data-message p {
    font-size: 1.2rem;
    color: var(--color-ciruleo);
    font-weight: 500;
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .dashboard-title {
        font-size: 2rem;
    }

    .dashboard-controls {
        flex-direction: column;
    }

    .search-input,
    .filter-select,
    .btn-clear-data {
        width: 100%;
    }

    .stats-counter {
        gap: 1rem;
    }

    .counter-item {
        padding: 1rem 1.5rem;
        min-width: 140px;
    }

    .counter-number {
        font-size: 2rem;
    }

    .counter-label {
        font-size: 0.8rem;
    }

    .dashboard-table-wrapper {
        padding: 1rem;
    }

    .dashboard-table {
        font-size: 0.85rem;
    }

    .dashboard-table th,
    .dashboard-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .dashboard-table td:last-child {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .dashboard-section {
        padding: 100px 0 60px;
    }

    .dashboard-title {
        font-size: 1.7rem;
    }

    .dashboard-subtitle {
        font-size: 1rem;
    }
}

/* Dashboard Controls */
.dashboard-controls {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.dashboard-controls .btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dashboard-controls .btn-primary {
    background: linear-gradient(135deg, #047BA4, #040453);
    color: white;
}

.dashboard-controls .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 123, 164, 0.3);
}

.dashboard-controls .btn-secondary {
    background: #6c757d;
    color: white;
}

.dashboard-controls .btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

@media (max-width: 768px) {
    .dashboard-controls {
        flex-direction: column;
    }
    
    .dashboard-controls .btn {
        width: 100%;
    }
}

/* ===================================
   LOGIN SECTION
   =================================== */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 40px;
    background: linear-gradient(135deg, var(--color-hoja-agua), var(--color-turquesa));
}

.login-container {
    background: var(--color-blanco);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(4, 123, 164, 0.2);
    max-width: 450px;
    width: 100%;
}

.login-title {
    font-family: var(--font-titulo);
    font-size: 2rem;
    color: var(--color-azul-golfo);
    margin-bottom: 0.5rem;
    text-align: center;
}

.login-subtitle {
    font-family: var(--font-subtitulo);
    color: var(--color-ciruleo);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
}

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

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-azul-golfo);
    font-weight: 600;
    font-family: var(--font-subtitulo);
}

.login-form input {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--color-hoja-agua);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-cuerpo);
    transition: all 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: var(--color-ciruleo);
    box-shadow: 0 0 0 3px rgba(4, 123, 164, 0.1);
}

.error-message {
    display: none;
    background: #fee;
    color: #c33;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-align: center;
    border: 1px solid #fcc;
}

.btn-login {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .login-container {
        padding: 2rem 1.5rem;
    }
    
    .login-title {
        font-size: 1.75rem;
    }
}
