:root {
    /* Color Palette */
    --bg-dark: #0a1930;
    --bg-card: rgba(20, 25, 40, 0.6);
    --bg-card-hover: rgba(30, 38, 60, 0.8);
    --primary: #00f2fe;
    --secondary: #4facfe;
    --accent: #7f00ff;
    --text-main: #f8f9fa;
    --text-muted: #a0aec0;
    --border-color: rgba(255, 255, 255, 0.08);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--text-main);
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 6rem 0;
}

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

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--bg-dark);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 242, 254, 0.3);
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.btn-primary-sm {
    background: var(--primary);
    color: var(--bg-dark);
    padding: 0.5rem 1.25rem;
    font-size: 0.95rem;
    border-radius: 6px;
    font-weight: 600;
}

.btn-primary-sm:hover {
    background: var(--text-main);
}

.w-full {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(7, 10, 19, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
}

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

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

.logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
}

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

.nav-links a:not(.btn-primary-sm) {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.btn-primary-sm)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary-sm):hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
}

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

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 10, 19, 0.85) 0%, rgba(79, 172, 254, 0.45) 100%);
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, var(--bg-dark) 100%);
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.sphere-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
}

.sphere-2 {
    bottom: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
}

.hero-content {
    max-width: 100%;
    position: relative;
    z-index: 1;
    margin-top: -2rem;
}

.hero-title-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 13rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.2);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 3rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Services */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.align-left {
    text-align: left;
    margin-left: 0;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.service-card {
    padding: 2.5rem 2rem;
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 254, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.service-link:hover {
    color: var(--secondary);
}

/* Solutions */
.solutions .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.solution-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.solution-icon {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    font-size: 1.5rem;
    color: var(--secondary);
    border: 1px solid var(--border-color);
}

.solution-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.solution-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.solutions-image {
    position: relative;
    padding: 3rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.abstract-shape {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(127,0,255,0.1) 0%, transparent 50%);
    z-index: 0;
    animation: rotate 20s linear infinite;
}

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

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* CTA */
.cta-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-item span {
    color: var(--text-main);
    font-weight: 500;
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 1.5rem 0;
    max-width: 300px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s forwards;
}

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

.delay-1 { animation-delay: 0.2s; transition-delay: 0.1s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.2s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
/* --- Nuestros Aliados --- */
.aliados {
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 3rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.carousel-track {
    display: inline-block;
    animation: scroll-carousel 75s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.aliado-logo {
    height: 68px;
    margin: 0 4rem;
    vertical-align: middle;
    filter: grayscale(100%) brightness(200%) contrast(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.logo-png {
    filter: grayscale(100%) brightness(120%) contrast(110%);
    mix-blend-mode: luminosity;
    border-radius: 8px;
}

.logo-invert {
    filter: invert(1) grayscale(100%) brightness(150%) !important;
    mix-blend-mode: screen;
}

.logo-icon {
    filter: none !important;
    opacity: 0.7;
    border-radius: 10px;
    height: 75px;
}

.aliado-logo:hover, .aliado-logo.logo-png:hover, .aliado-logo.logo-invert:hover, .aliado-logo.logo-icon:hover {
    filter: none !important;
    opacity: 1;
    mix-blend-mode: normal;
    transform: scale(1.1);
}

@keyframes scroll-carousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* --- Inner Pages --- */
.hero-inner {
    min-height: 50vh;
    padding: 10rem 0 5rem;
    display: flex;
    align-items: center;
}

.hero-inner .hero-content {
    margin-top: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .solutions .container {
        grid-template-columns: 1fr;
    }
    .cta-box {
        grid-template-columns: 1fr;
        padding: 3rem;
    }
    .hero h1 {
        font-size: 2.2rem;
        white-space: normal;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .cta-box {
        padding: 2rem;
    }
}

/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: -200px; /* Start hidden below */
    left: 0;
    width: 100%;
    background-color: #060d14; /* Dark blue background requested previously */
    color: #e0e0e0;
    padding: 1.5rem 2rem;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: bottom 0.5s ease-in-out;
}

#cookie-consent-banner.show {
    bottom: 0;
}

.cookie-text {
    flex: 1;
    margin-right: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-title {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-cookie {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-outline:hover {
    background: rgba(79, 172, 254, 0.1);
}

.btn-solid {
    background: var(--secondary);
    color: #060d14;
    border: 1px solid var(--secondary);
}

.btn-solid:hover {
    background: var(--primary);
}

@media (max-width: 768px) {
    #cookie-consent-banner {
        flex-direction: column;
        align-items: stretch;
        padding: 1.2rem;
    }
    .cookie-text {
        margin-right: 0;
        margin-bottom: 1.2rem;
    }
    .cookie-buttons {
        justify-content: center;
    }
}

/* Cookie Preference Modal */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal {
    background-color: var(--bg-dark);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-modal-overlay.show .cookie-modal {
    transform: translateY(0);
}

.cookie-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-main);
}

.btn-close-modal {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.btn-close-modal:hover {
    color: var(--text-main);
}

.cookie-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.cookie-modal-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.cookie-accordion {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.cookie-accordion-header {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.cookie-accordion-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.cookie-accordion-icon {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.cookie-accordion.open .cookie-accordion-icon {
    transform: rotate(90deg);
}

.cookie-accordion-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.always-active {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--secondary);
}

input:checked + .slider:before {
    transform: translateX(20px);
}

.cookie-accordion-content {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.cookie-accordion.open .cookie-accordion-content {
    padding: 1rem;
    max-height: 500px;
}

.cookie-accordion-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 500px) {
    .cookie-modal-footer {
        flex-direction: column;
    }
    .cookie-modal-footer .btn-cookie {
        width: 100%;
        text-align: center;
    }
}

/* WhatsApp Floating Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    font-family: var(--font-body);
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #46bf3d; /* Exact shade from screenshot */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.08);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.icon-wa {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-close {
    position: absolute;
    opacity: 0;
    transform: scale(0) rotate(-90deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-widget.open .icon-wa {
    opacity: 0;
    transform: scale(0) rotate(90deg);
}

.whatsapp-widget.open .icon-close {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 400px) {
    .whatsapp-popup {
        width: 300px;
    }
}

.whatsapp-widget.open .whatsapp-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-header {
    background: #46bf3d;
    padding: 1.5rem;
    color: #ffffff;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.whatsapp-header-logo svg {
    width: 48px;
    height: 48px;
    fill: #ffffff;
}

.whatsapp-header-text h4 {
    margin: 0 0 0.4rem 0;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.whatsapp-header-text p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.whatsapp-body {
    padding: 1.5rem;
    background: #f5f7f9;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whatsapp-meta {
    margin: 0;
    font-size: 0.85rem;
    color: #8a9aa8;
    font-weight: 500;
}

.whatsapp-contact {
    background: #ffffff;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    border-left: 3px solid #46bf3d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.whatsapp-contact-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e8f7e8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-contact-avatar svg {
    width: 26px;
    height: 26px;
    fill: #46bf3d;
}

.whatsapp-contact-info {
    flex: 1;
}

.whatsapp-contact-name {
    display: block;
    color: #333333;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.whatsapp-contact-title {
    display: block;
    color: #888888;
    font-size: 0.8rem;
}

.whatsapp-contact-icon svg {
    width: 20px;
    height: 20px;
    fill: #cccccc;
    transition: fill 0.2s ease;
}

.whatsapp-contact:hover .whatsapp-contact-icon svg {
    fill: #46bf3d;
}

