:root {
    --primary: #020617;
    --accent: #22c55e; /* Green for success/trust */
    --accent-glow: rgba(34, 197, 94, 0.4);
    --cream: #fef9e7;
    --text-dark: #0f172a;
    --text-light: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --radius: 24px;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 20%, #0a0f1e 50%, var(--primary) 100%);
    background-attachment: fixed;
    color: var(--text-dark);
    min-height: 100vh;
}

.landing-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.content-section {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Header */
header {
    margin-bottom: 4rem;
    max-width: 900px;
}

.logo-container {
    margin-bottom: 2rem;
}

.main-logo {
    height: 70px;
    width: auto;
}

.experience-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

header h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

header p {
    font-size: 1.25rem;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    text-align: left;
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px var(--accent-glow);
    border-color: var(--accent);
}

.card-img {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .card-img img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    position: relative;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.card-content p {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 1.5rem;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    opacity: 0.5;
}

/* CTA */
.cta-container {
    margin: 2rem 0 6rem;
}

.main-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 0 20px var(--accent-glow);
}

.main-whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--accent-glow);
}

/* Stats Section */
.stats-section {
    width: 100%;
    padding: 6rem 2rem;
    background: url('https://images.unsplash.com/photo-1589519160732-57fc497e9880?auto=format&fit=crop&q=80&w=1200&h=600') center/contain no-repeat;
    position: relative;
    border-radius: var(--radius);
    color: var(--text-light);
    margin-bottom: 4rem;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(2, 6, 23, 0.7) 0%, rgba(2, 6, 23, 0.95) 100%);
}

.stats-section h2 {
    position: relative;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating WA */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 9999;
}

.floating-wa svg {
    width: 34px;
    height: 34px;
}

.floating-wa:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* Footer */
.custom-footer {
    background: #010409;
    padding: 6rem 2rem 2rem;
    color: var(--text-light);
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    text-align: left;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

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

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.6;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-col p {
    opacity: 0.6;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Section: Nosotros */
.nosotros-section {
    width: 100%;
    padding: 6rem 2rem;
    background: white;
    color: var(--text-dark);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.nosotros-content {
    max-width: 900px;
}

.nosotros-title {
    color: #b91c1c; /* Crimson Red from the image */
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.nosotros-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.nosotros-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    width: 100%;
    max-width: 1000px;
}

.stat-box {
    text-align: center;
    flex: 1;
}

.stat-box.divider {
    width: 1px;
    height: 80px;
    background: rgba(0,0,0,0.1);
    flex: none;
}

.stat-val {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #b91c1c;
    margin-bottom: 0.5rem;
}

.stat-txt {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.7;
}

/* Footer Icons Update */
.social-links-footer .social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.social-links-footer .social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-3px);
}

.social-icon.wa:hover { background: #25D366; border-color: #25D366; }
.social-icon.fb:hover { background: #1877F2; border-color: #1877F2; }
.social-icon.yt:hover { background: #FF0000; border-color: #FF0000; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nosotros-stats {
        flex-direction: column;
        gap: 3rem;
    }
    .stat-box.divider {
        display: none;
    }
    .stat-val { font-size: 2.5rem; }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.85rem;
    opacity: 0.4;
}
/* Refined Unified Section */
.unified-nosotros-section {
    padding: 6rem 5%;
    background: #0a0f1e; /* Solid dark background for consistency */
    border-radius: var(--radius);
    margin: 4rem 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.nosotros-content {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.nosotros-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2.5rem;
    color: #fff;
    font-weight: 700;
}

.nosotros-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
}

.unified-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #22c55e;
}

.stat-val {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #22c55e; /* Green for success/stats */
    margin-bottom: 0.5rem;
}

.stat-txt {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .unified-nosotros-section { margin: 2rem 1rem; padding: 4rem 1.5rem; }
    .unified-stats-grid { grid-template-columns: 1fr 1fr; }
}