/* ====== CSS Variables & Reset ====== */
:root {
    --gold: #FFCB0A;
    --green: #009743;
    --green-dark: #006e30;
    --green-light: #00b350;
    --gold-light: #ffe566;
    --bg-primary: #f8faf6;
    --bg-dark: #0a1f0d;
    --text-dark: #1a2e1a;
    --text-muted: #5a7a5a;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(0, 151, 67, 0.15);
    --shadow-sm: 0 2px 12px rgba(0, 151, 67, 0.08);
    --shadow-md: 0 8px 32px rgba(0, 151, 67, 0.12);
    --shadow-lg: 0 16px 64px rgba(0, 151, 67, 0.16);
    --shadow-gold: 0 8px 32px rgba(255, 203, 10, 0.25);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-full: 100px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-dark);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ====== Canvas ====== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ====== Floating Shapes ====== */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--green);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    bottom: -80px;
    left: -80px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--green);
    top: 50%;
    left: 10%;
    animation-delay: -10s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: var(--gold);
    top: 20%;
    right: 20%;
    animation-delay: -3s;
}

.shape-5 {
    width: 250px;
    height: 250px;
    background: var(--green);
    bottom: 20%;
    right: 5%;
    animation-delay: -7s;
}

.shape-6 {
    width: 180px;
    height: 180px;
    background: var(--gold);
    top: 60%;
    left: 60%;
    animation-delay: -12s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(30px, -30px) rotate(5deg) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) rotate(-3deg) scale(0.95);
    }

    75% {
        transform: translate(15px, 10px) rotate(4deg) scale(1.02);
    }
}

/* ====== Main Container ====== */
.main-container {
    position: relative;
    z-index: 1;
}

/* ====== Top Nav ====== */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-nav.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    padding: 12px 40px;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(0, 151, 67, 0.3);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

/* ====== Hero Section ====== */
.hero-section {
    min-height: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    text-align: center;
    position: relative;
}

.hero-cover {
    margin-bottom: 20px;
}

.cover-image {
    max-width: 480px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(0, 151, 67, 0.2));
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {

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

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

.hero-content {
    max-width: 700px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 203, 10, 0.15), rgba(0, 151, 67, 0.1));
    border: 1px solid rgba(255, 203, 10, 0.3);
    color: var(--green-dark);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge svg {
    color: var(--gold);
}

.hero-title {
    margin-bottom: 5px;
    line-height: 1.1;
}

.title-line-1 {
    display: block;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 300;
    color: var(--text-muted);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.title-line-2 {
    display: block;
    font-size: clamp(2.8rem, 8vw, 4.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    background: linear-gradient(135deg, var(--gold), #e6b600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 10px;
    font-weight: 300;
}

.hero-subtitle strong {
    color: var(--green);
    font-weight: 600;
}



/* ====== Social Section ====== */
.social-section {
    /*padding: 40px 24px 60px;*/
    max-width: 900px;
    margin: 0 auto;
}

.social-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 26px;
}

.social-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.social-title {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.social-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.social-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.social-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-card:hover .social-card-glow {
    opacity: 1;
}

.facebook-glow {
    background: radial-gradient(circle, rgba(24, 119, 242, 0.08) 0%, transparent 70%);
}

.instagram-glow {
    background: radial-gradient(circle, rgba(225, 48, 108, 0.08) 0%, transparent 70%);
}

.whatsapp-glow {
    background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 70%);
}

.social-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.social-card:hover .social-icon-wrapper {
    transform: scale(1.1) rotate(-3deg);
}

.facebook-bg {
    background: linear-gradient(135deg, #1877F2, #0d5bc6);
    color: var(--white);
}

.instagram-bg {
    background: linear-gradient(135deg, #E1306C, #C13584, #833AB4);
    color: var(--white);
}

.whatsapp-bg {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
}

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

.social-name {
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.social-handle {
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
    display: none;
}

.social-arrow {
    margin-left: auto;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translate(-8px, 8px);
}

.social-card:hover .social-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

@media (min-width: 600px) {
    .social-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }

    .social-handle {
        display: block;
    }

    .social-arrow {
        position: absolute;
        top: 16px;
        right: 16px;
        margin-left: 0;
    }
}

/* ====== Footer ====== */
.footer {
    padding: 20px 12px;
    margin-top: 5px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 12px;
    opacity: 0.6;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.6;
    font-style: italic;
}

/* ====== WhatsApp Float ====== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: floatPulse 2s ease-in-out infinite;
}

@keyframes floatPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* ====== Animations ====== */
.animate-fade-in,
.animate-slide-up,
.animate-slide-up-delay,
.animate-slide-up-delay-2,
.animate-slide-up-delay-3,
.animate-scale-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale-in {
    transform: translateY(30px) scale(0.95);
}

.animate-slide-up-delay {
    transition-delay: 0.15s;
}

.animate-slide-up-delay-2 {
    transition-delay: 0.3s;
}

.animate-slide-up-delay-3 {
    transition-delay: 0.45s;
}

.animate-fade-in.visible,
.animate-slide-up.visible,
.animate-slide-up-delay.visible,
.animate-slide-up-delay-2.visible,
.animate-slide-up-delay-3.visible,
.animate-scale-in.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ====== Responsive ====== */
@media (max-width: 768px) {
    .top-nav {
        padding: 12px 20px;
    }

    .top-nav.scrolled {
        padding: 10px 20px;
    }

    .nav-logo-img {
        height: 36px;
    }

    .nav-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .cover-image {
        max-width: 320px;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .social-card {
        flex-direction: row;
        text-align: left;
        padding: 20px;
    }

    .social-handle {
        display: block;
    }

    .social-arrow {
        position: static;
        margin-left: auto;
        opacity: 1;
        transform: none;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 400px) {
    .hero-section {
        padding-top: 30px;
    }

    .cover-image {
        max-width: 260px;
    }
}