/* ===========================
   CSS Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --accent-pink: #EF9A9A;
    --accent-pink-glow: rgba(239, 154, 154, 0.4);
    --white: #ffffff;
    --dark-overlay: rgba(0, 0, 0, 0.5);
    --green-phone: #25d366;
    --green-phone-glow: rgba(37, 211, 102, 0.4);

    /* Typography */
    --font-heading: 'Gabriela', serif;
    --font-body: 'Roboto', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

body {
    font-family: var(--font-body);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===========================
   Video Background
   =========================== */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-overlay);
    z-index: -1;
}

/* ===========================
   Main Content Container
   =========================== */
.content {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    text-align: center;
}

/* ===========================
   Logo
   =========================== */
.logo-container {
    position: absolute;
    top: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInDown 1s ease-out;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: none;
    transition: transform 0.3s ease;
}

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

/* ===========================
   Hero Section
   =========================== */
.hero {
    max-width: 800px;
    margin-top: 160px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 16px;
    text-shadow: none;
    line-height: 32px;
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    opacity: 1;
    line-height: 32px;
}

.description {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 32px;
    opacity: 1;
}

/* ===========================
   CTA Buttons (Vertical Layout)
   =========================== */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto var(--spacing-xl);
}

.btn {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 0 20px;
    min-height: 56px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1.25px;

    /* New Design */
    background: transparent;
    color: var(--white);
    border: 1px solid var(--accent-pink);

    /* Material Design Transitions */
    transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.28s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);

    /* Flexbox for Icon + Text Layout */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-direction: row;
}

/* Button Hover State (Desktop) */
.btn:hover {
    background: rgba(239, 154, 154, 0.15);
    border-color: var(--accent-pink);
    box-shadow: 0 0 20px var(--accent-pink-glow);
    transform: translateY(-2px);
}

/* Button Active State (Mobile Touch Feedback) */
.btn:active {
    background: rgba(239, 154, 154, 0.3);
    transform: scale(0.98) translateY(0);
    box-shadow: 0 0 15px var(--accent-pink-glow);
}

/* WhatsApp Button with Subtitle */
.btn-whatsapp {
    flex-direction: column;
    gap: 0.25rem;
    padding: 12px 20px;

    /* Attention-grabbing animation */
    animation: whatsappPulse 2s ease-in-out infinite;
    position: relative;
}

/* Pause animation on hover */
.btn-whatsapp:hover {
    animation-play-state: paused;
}

.btn-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}

.btn-subtitle {
    font-size: 12px;
    font-weight: 400;
    opacity: 1;
    letter-spacing: 0;
    text-transform: none;
    line-height: 14px;
}

/* Call Button with Icon */
.btn-call {
    gap: 0.625rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
    color: var(--white);
    transition: color 0.3s ease;
}

.btn:hover .btn-icon {
    color: var(--accent-pink);
}

/* Focus Styles for Accessibility */
.btn:focus {
    outline: 2px solid var(--accent-pink);
    outline-offset: 3px;
}

/* Remove old Info Section (no longer needed) */


/* ===========================
   Floating Phone Widget
   =========================== */
.phone-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--green-phone);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 20px var(--green-phone-glow);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4),
        0 0 30px var(--green-phone-glow);
}

.phone-icon {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 2;
}

/* Pulsating Rings */
.pulse-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--green-phone);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    opacity: 0;
}

.pulse-ring-delay {
    animation-delay: 1s;
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

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

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

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }

    to {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.5),
            0 0 40px var(--neon-pink-glow);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-3px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes whatsappPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--accent-pink-glow);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 0 20px var(--accent-pink-glow),
            0 0 30px var(--accent-pink-glow);
    }
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .content {
        padding: var(--spacing-md);
    }

    .logo-container {
        top: var(--spacing-lg);
    }

    .logo {
        width: 90px;
        height: 90px;
    }

    .hero {
        margin-top: 60px;
    }

    .cta-buttons {
        max-width: 100%;
        padding: 0 var(--spacing-sm);
    }

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

    .phone-widget {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .phone-icon {
        width: 24px;
        height: 24px;
    }

    .pulse-ring {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 80px;
        height: 80px;
    }

    .btn {
        font-size: 0.95rem;
        padding: 0.875rem 1.5rem;
    }

    .btn-whatsapp {
        padding: 0.875rem 1.5rem 0.75rem;
    }
}

/* ===========================
   Accessibility
   =========================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.phone-widget:focus {
    outline: 3px solid var(--neon-pink);
    outline-offset: 4px;
}