:root {
    --bg-color: #0A0A0A;
    --accent-color: #FF751F;
    --text-color: #FFFFFF;
    --text-muted: #A0A0A0;
    --card-bg: #141414;

    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.accent {
    color: var(--accent-color);
}

.section-title {
    font-size: clamp(1.5rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.giant-title {
    font-size: clamp(2rem, 8vw, 6rem);
    margin-bottom: 2rem;
    text-align: center;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.fullscreen-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0) 100%);
    backdrop-filter: blur(5px);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-color);
}

.nav-cta {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.nav-cta:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
    box-shadow: inset 0 0 0 2px var(--accent-color);
}

.full-width {
    width: 100%;
}

/* Decor Elements */
.accent-divider {
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin-bottom: 2rem;
}

.accent-divider.right {
    margin-left: auto;
}

.decor-line {
    position: absolute;
    bottom: 4rem;
    left: 0;
    height: 2px;
    background-color: var(--accent-color);
    width: 30vw;
}

/* Hero Section */
.hero-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-muted);
    max-width: 820px;
    margin-bottom: 3rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text p {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: var(--text-muted);
}

.about-stat {
    display: flex;
    justify-content: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 250px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    position: relative;
}

.stat-number {
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 1rem;
    text-align: center;
}

/* Services Section (Old) */
.services-header {
    text-align: right;
    margin-bottom: 4rem;
}

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

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--card-bg);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    margin-top: auto;
}

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

.card-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--accent-color);
    transition: width 0.4s ease;
}

.service-card:hover .card-hover-line {
    width: 100%;
}

/* Contact Section */
.contact-container {
    max-width: 800px;
}

.contact-desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #333;
    padding: 1rem 0;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--accent-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
    font-weight: 700;
}

#submitBtn {
    text-align: center;
    align-items: center;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

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

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        align-items: flex-start;
    }

    nav {
        gap: 1rem;
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    nav a {
        font-size: 0.85rem;
    }

    .nav-cta {
        padding: 0.4rem 1rem;
    }

    .giant-title {
        font-size: 3rem;
    }
}

/* --- NEW ADDITIONS FOR GESKEP DATA --- */

.bg-card {
    background-color: var(--card-bg);
    /* #141414 */
}

.center-header {
    text-align: center;
}

.text-left {
    text-align: left;
}

.accent-divider.center {
    margin: 0 auto 2rem auto;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.p-4 {
    padding: 1.5rem;
}

.border-accent {
    border-left: 4px solid var(--accent-color);
}

.italic {
    font-style: italic;
}

.text-white {
    color: var(--text-color);
}

.small-title {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.custom-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1rem;
    top: 0px;
}

.custom-list.square-bullets li::before {
    content: "■";
    font-size: 0.8rem;
    top: 4px;
}

.custom-list.large li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.custom-list.small li {
    font-size: 0.9rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.problem-card h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.problem-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.method-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .method-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .method-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.method-step {
    background-color: transparent;
    border: 1px solid #333;
    padding: 2.5rem 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.method-step:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.icon-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    display: block;
}

.method-step h4 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.method-step p {
    text-align: justify;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.method-step p.small-title {
    text-align: left;
}


.step-line {
    border: 0;
    height: 1px;
    background: #333;
    margin-bottom: 1.5rem;
}

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

@media (min-width: 768px) {
    .services-columns {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* --- IMAGE LAYOUT STYLES --- */
.logo-img {
    height: 30px;
    /* Base height for mobile */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .logo-img {
        height: 40px;
        /* Larger logo on tablet/desktop */
    }
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
    /* Optional: slight zoom on hover */
}

/* About Grid Custom */
.about-grid-custom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 900px) {
    .about-grid-custom {
        grid-template-columns: 1.3fr 0.8fr;
    }
}

.about-founder-img {
    width: 100%;
    height: auto;
}

/* ── HERO VIDEO ── */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.75);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* ── PRUEBA SOCIAL (número) ── */
.hero-social-proof {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
}

/* ── BOTÓN SECUNDARIO ── */
.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    margin-left: 1rem;
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* ── ESTRELLAS ── */
.hero-stars {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stars {
    font-size: 1rem;
}

.stars-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── HERO ACTIONS (botones en fila) ── */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .btn-secondary {
        margin-left: 0;
    }
}

/* ── FOOTER SOCIALS ── */
.footer-socials {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.footer-copy a {
    color: #FF751F;
}

.footer-copy a:hover {
    color: #fda66f;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.social-btn.instagram {
    color: var(--text-muted);
    border-color: #333;
}

.social-btn.instagram:hover {
    color: #E1306C;
    border-color: #E1306C;
}

.social-btn.email {
    color: var(--text-muted);
    border-color: #333;
}

.social-btn.email:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.social-btn.whatsapp {
    color: var(--text-muted);
    border-color: #333;
}

.social-btn.whatsapp:hover {
    color: #25D366;
    border-color: #25D366;
}