/* ---=== Yatécnico Design System ===--- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
    --primary: oklch(70% 0.25 45);
    /* Safety Orange */
    --primary-hover: oklch(65% 0.25 45);
    --secondary: oklch(55% 0.2 250);
    /* Tech Blue */
    --secondary-hover: oklch(50% 0.2 250);
    --dark: #0a0a0b;
    --text: #f8fafc;
    --text-light: #94a3b8;
    --bg-glass: rgba(10, 10, 11, 0.7);
    --white: #ffffff;
    --border: rgba(255, 255, 255, 0.08);
    --danger: #ef4444;
    --danger-hover: #dc2626;
    --success: #10b981;
    --radius: 20px;
    --shadow-md: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    --container: 1200px;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.7;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}

#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: brightness(0.6);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* --- UI Elements --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary);
    color: #000;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(255, 107, 0, 0.4);
}

.btn.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid var(--border);
}

.btn.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-whatsapp {
    background-color: #25d366 !important;
    color: white !important;
}

.btn-whatsapp:hover {
    box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.4) !important;
}

/* --- Header & Navigation --- */
header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo i {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

/* --- Sections --- */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* --- New Hero Section --- */
.hero-new {
    padding: 80px 0 60px;
    background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.03), transparent 40%),
        radial-gradient(circle at bottom left, rgba(0, 102, 255, 0.03), transparent 40%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 80px;
}

.hero-content-modern .badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content-modern h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-content-modern .highlight {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content-modern p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 550px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-visual .image-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border);
}

.hero-visual img {
    width: 100%;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(0, 102, 255, 0.15));
}

/* --- Modern Services Grid --- */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card-modern {
    padding: 48px 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 50px 100px -30px rgba(0, 0, 0, 0.5);
}

.service-icon-bg {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 28px;
    transition: transform 0.4s ease;
}

.service-card-modern:hover .service-icon-bg {
    transform: scale(1.1) rotate(5deg);
}

.service-card-modern.orange .service-icon-bg {
    color: var(--primary);
}

.service-card-modern.blue .service-icon-bg {
    color: var(--secondary);
}

.service-card-modern.neutral .service-icon-bg {
    color: var(--white);
}

.service-card-modern.primary-gradient {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(0, 102, 255, 0.05));
}

.service-card-modern.primary-gradient .service-icon-bg {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.service-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.service-card-modern p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
    margin-top: auto;
}

.service-list li {
    font-size: 0.95rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 0.8rem;
}

.service-card-modern.blue .service-list li::before {
    color: var(--secondary);
}

/* --- Trust Section --- */
.trust-section {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.01);
}

.trust-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.trust-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 48px;
    color: var(--white);
}

.check-grid {
    display: grid;
    gap: 40px;
}

.check-item {
    display: flex;
    gap: 24px;
}

.check-item i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 4px;
}

.check-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.check-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.trust-image {
    position: relative;
}

.trust-image img {
    width: 100%;
    border-radius: 32px;
    box-shadow: var(--shadow-md);
    filter: grayscale(0.2);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary);
    padding: 28px 36px;
    border-radius: 24px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.experience-badge .number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
}

/* --- About Modern --- */
.about-section-modern {
    padding: 120px 0;
}

.about-card-modern {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 80px 60px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-text-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 32px;
}

.about-text-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    color: var(--white);
    margin-top: 32px;
    border: 1px solid var(--border);
}

.location-badge i {
    color: var(--primary);
}

/* --- Modern Footer --- */
footer {
    padding: 100px 0 50px;
    border-top: 1px solid var(--border);
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand .logo {
    font-size: 2rem;
    margin-bottom: 24px;
}

.footer-brand p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 300px;
}

.footer-contact-info h4,
.footer-links-grid h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-contact-info i {
    color: var(--primary);
    font-size: 1.2rem;
}

.footer-links-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links-grid ul a {
    color: var(--text-light);
    font-weight: 500;
}

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

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

/* --- Responsive Layout --- */
@media (max-width: 1100px) {

    .hero-container,
    .trust-layout {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content-modern p,
    .hero-buttons {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .hero-new h1 {
        font-size: 3.2rem;
    }

    .services-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {

    /* Responsive Header & Menu */
    header {
        padding: 15px 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-glass);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--border);
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    /* Core Layout Fixes */
    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    .hero-container {
        gap: 40px;
        padding-top: 20px;
    }

    .hero-content-modern h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero-content-modern p {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .hero-visual .image-wrapper {
        border-radius: 25px;
    }

    /* Grids & Cards */
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-modern {
        padding: 40px 24px;
    }

    .section-header h2 {
        font-size: 2.22rem;
    }

    .trust-layout {
        gap: 48px;
    }

    .trust-content h2 {
        font-size: 2.2rem;
        margin-bottom: 32px;
    }

    .check-item {
        gap: 16px;
    }

    .experience-badge {
        padding: 20px 24px;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
    }

    .experience-badge .number {
        font-size: 2.2rem;
    }

    /* Footer Fixes */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .footer-brand p,
    .footer-contact-info p {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    /* About Card Fix */
    .about-card-modern {
        padding: 48px 24px;
    }

    .about-text-content h2 {
        font-size: 2.2rem;
    }

    .about-text-content p {
        font-size: 1.1rem;
    }

    .hide-mobile {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content-modern h1 {
        font-size: 2rem;
    }

    .form-container {
        padding: 32px 20px;
    }

    .modal-content {
        padding: 32px 20px;
        margin: 10px;
    }

    .booking-code-box #modalBookingId {
        font-size: 1.8rem;
    }
}

/* --- Form Styles --- */
.form-section {
    padding: 60px 0;
}

.form-container {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--white);
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.track-callout {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 15px 24px;
    border-radius: 16px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.track-callout a {
    color: var(--secondary);
    font-weight: 700;
    margin-left: 10px;
}

/* Status Styles */
.status {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status.pending {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
}

.status.approved {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.status.rejected {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

/* --- Modal System --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-content {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 32px;
    width: 100%;
    max-width: 480px;
    padding: 40px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
    animation: modalSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

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

.modal-body {
    margin: 24px 0;
}

/* Receipt Card Aesthetic */
.receipt-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--border);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
}

.receipt-card p {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.receipt-card p strong {
    color: var(--text-light);
    font-weight: 500;
}

.receipt-card p span {
    color: var(--white);
    font-weight: 700;
}

.booking-code-box {
    text-align: center;
    padding: 20px;
    background: var(--dark);
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.booking-code-box .label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

#modalBookingId {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
    min-height: 2.5rem;
}

.whatsapp-note {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    text-align: center;
    margin-top: 16px;
    opacity: 0.9;
}