﻿*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Arboria', sans-serif; color: #1a1a1a; overflow-x: hidden; background: #fff; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

:root {
    --primary: #FF6B00;
    --primary-light: #FF8C38;
    --primary-dark: #E05E00;
    --accent: #0057FF;
    --dark: #0B0B0F;
    --dark-2: #141419;
    --gray: #6B7280;
    --light-gray: #F3F4F6;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #FF6B00 0%, #FF8C38 50%, #FFB347 100%);
    --gradient-dark: linear-gradient(135deg, #0B0B0F 0%, #1a1a2e 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.15);
    --shadow-orange: 0 10px 40px rgba(255,107,0,.3);
    --radius: 16px;
    --radius-lg: 24px;
}

/* PRELOADER */
.preloader { position: fixed; inset: 0; background: var(--dark); display: flex; align-items: center; justify-content: center; z-index: 99999; transition: opacity .5s, visibility .5s; }
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-spinner { width: 50px; height: 50px; border: 4px solid rgba(255,107,0,.2); border-top: 4px solid var(--primary); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* NAVBAR */
.navbar { position: fixed; top: 0; width: 100%; padding: 18px 60px; display: flex; justify-content: space-between; align-items: center; z-index: 1000; transition: all .4s cubic-bezier(.4,0,.2,1); }
.navbar.scrolled { background: rgba(11,11,15,.95); backdrop-filter: blur(20px); padding: 12px 60px; box-shadow: 0 4px 30px rgba(0,0,0,.3); }
.logo { display: flex; align-items: center; gap: 12px; font-family: 'Arboria', sans-serif; font-size: 1.6rem; font-weight: 800; color: #fff; }
.logo img { height: 48px; width: auto; border-radius: 10px; }
.logo-text span { color: var(--primary); font-weight: 900; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: rgba(255,255,255,.8); font-weight: 500; font-size: .9rem; transition: .3s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { padding: 10px 28px !important; background: var(--gradient-primary) !important; border-radius: 50px !important; color: #fff !important; font-weight: 600 !important; transition: transform .3s, box-shadow .3s !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 28px; height: 3px; background: #fff; border-radius: 3px; transition: .3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(8px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-8px); }

/* HERO */
.hero-contact { min-height: 50vh; background: var(--dark); display: flex; align-items: center; position: relative; overflow: hidden; padding: 140px 60px 80px; }
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.hero-circle { position: absolute; border-radius: 50%; }
.hero-circle-1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(255,107,0,.08) 0%, transparent 70%); top: -200px; right: -200px; }
.hero-circle-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,87,255,.06) 0%, transparent 70%); bottom: -100px; left: -100px; }
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,107,0,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,107,0,.03) 1px, transparent 1px); background-size: 60px 60px; }
.hero-contact-content { max-width: 700px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; border-radius: 50px; background: rgba(255,107,0,.1); border: 1px solid rgba(255,107,0,.2); color: var(--primary); font-size: .85rem; font-weight: 600; margin-bottom: 25px; }
.hero-contact h1 { font-size: 3rem; font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.hero-contact h1 .gradient-text { background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-contact h1 .orange { color: var(--primary); }
.hero-contact p { color: rgba(255,255,255,.65); font-size: 1.05rem; line-height: 1.8; max-width: 580px; margin: 0 auto 30px; }
.hero-pills { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hero-pill { display: flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 50px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.8); font-size: .82rem; }
.hero-pill i { color: var(--primary); }

/* BREADCRUMB */
.breadcrumb { background: var(--light-gray); padding: 14px 60px; border-bottom: 1px solid #e5e7eb; }
.breadcrumb-list { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--gray); }
.breadcrumb-list a { color: var(--primary); }
.breadcrumb-list .separator { color: #ccc; font-size: .7rem; }

/* CONTACT CARDS */
.cards-section { padding: 70px 60px 0; max-width: 1300px; margin: 0 auto; }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.contact-card { background: #fff; border: 1px solid #e5e7eb; border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; transition: transform .3s, box-shadow .3s, border-color .3s; }
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(255,107,0,.25); }
.card-icon { width: 64px; height: 64px; border-radius: 18px; background: rgba(255,107,0,.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; color: var(--primary); transition: background .3s; }
.contact-card:hover .card-icon { background: var(--gradient-primary); color: #fff; }
.contact-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.contact-card p, .contact-card a { font-size: .9rem; color: var(--gray); line-height: 1.7; display: block; transition: color .3s; }
.contact-card a:hover { color: var(--primary); }
.card-badge { display: inline-block; margin-top: 12px; padding: 4px 12px; border-radius: 50px; background: rgba(255,107,0,.1); color: var(--primary); font-size: .75rem; font-weight: 600; }

/* MAIN LAYOUT */
.contact-layout { display: grid; grid-template-columns: 1fr 480px; gap: 50px; max-width: 1300px; margin: 0 auto; padding: 60px; align-items: start; }

/* LEFT: INFO */
.contact-info h2 { font-size: 2rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.contact-info h2 .orange { color: var(--primary); }
.contact-info > p { color: var(--gray); font-size: 1rem; line-height: 1.8; margin-bottom: 36px; }

.info-block { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.info-item { display: flex; align-items: flex-start; gap: 18px; padding: 20px; background: var(--light-gray); border-radius: var(--radius); transition: background .3s; }
.info-item:hover { background: rgba(255,107,0,.06); }
.info-icon { width: 46px; height: 46px; min-width: 46px; border-radius: 12px; background: rgba(255,107,0,.12); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1rem; }
.info-text h4 { font-size: .9rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.info-text p, .info-text a { font-size: .88rem; color: var(--gray); line-height: 1.6; display: block; transition: color .3s; }
.info-text a:hover { color: var(--primary); }

.social-title { font-size: .85rem; font-weight: 700; color: var(--dark); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.social-row { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn { display: flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 50px; background: var(--light-gray); color: var(--dark); font-size: .85rem; font-weight: 600; border: 1px solid #e5e7eb; transition: all .3s; }
.social-btn:hover { color: #fff; border-color: transparent; transform: translateY(-2px); }
.social-btn.fb:hover { background: #1877F2; }
.social-btn.ig:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.li:hover { background: #0077B5; }
.social-btn.tt:hover { background: #000; }
.social-btn.wa:hover { background: #25D366; }

/* RIGHT: FORM */
.contact-form-panel { background: #fff; border: 1px solid #e5e7eb; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); position: sticky; top: 100px; }
.form-panel-title { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.form-panel-sub { font-size: .88rem; color: var(--gray); margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: .83rem; font-weight: 700; color: var(--dark); margin-bottom: 7px; }
.form-group label .required { color: var(--primary); }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid #e5e7eb; border-radius: 12px; font-family: 'Arboria', sans-serif; font-size: .9rem; color: var(--dark); background: #fafafa; transition: border-color .25s, box-shadow .25s; outline: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,107,0,.1); background: #fff; }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }

.form-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 22px; font-size: .82rem; color: var(--gray); line-height: 1.6; }
.form-consent input[type="checkbox"] { margin-top: 3px; accent-color: var(--primary); width: 16px; height: 16px; flex-shrink: 0; }
.form-consent a { color: var(--primary); }

.btn-submit { width: 100%; padding: 15px; background: var(--gradient-primary); color: #fff; border: none; border-radius: 14px; font-family: 'Arboria', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: transform .3s, box-shadow .3s; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }

.form-note { text-align: center; font-size: .78rem; color: var(--gray); margin-top: 12px; }

.form-success { display: none; text-align: center; padding: 30px 20px; }
.success-icon { width: 70px; height: 70px; border-radius: 50%; background: rgba(34,197,94,.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.8rem; color: #22c55e; }
.form-success h3 { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.form-success p { color: var(--gray); font-size: .9rem; line-height: 1.8; margin-bottom: 22px; }
.btn-wa-success { display: inline-flex; align-items: center; gap: 10px; padding: 13px 26px; background: #25D366; color: #fff; border-radius: 50px; font-weight: 700; font-size: .9rem; transition: transform .3s, box-shadow .3s; }
.btn-wa-success:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,.3); }

/* MAP */
.map-section { padding: 0 60px 70px; max-width: 1300px; margin: 0 auto; }
.map-section h2 { font-size: 1.6rem; font-weight: 800; color: var(--dark); margin-bottom: 20px; }
.map-section h2 .orange { color: var(--primary); }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid #e5e7eb; height: 380px; background: var(--light-gray); display: flex; align-items: center; justify-content: center; }
.map-placeholder { text-align: center; color: var(--gray); }
.map-placeholder i { font-size: 3rem; color: var(--primary); margin-bottom: 16px; }
.map-placeholder p { font-size: .95rem; line-height: 1.7; }
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* FAQ */
.faq-section { padding: 70px 60px; background: var(--light-gray); }
.faq-inner { max-width: 860px; margin: 0 auto; }
.section-label { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 50px; background: rgba(255,107,0,.1); color: var(--primary); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.section-title { font-size: 2rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.section-desc { color: var(--gray); font-size: 1rem; line-height: 1.7; margin-bottom: 40px; }
.orange { color: var(--primary); }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: var(--radius); border: 1px solid #e5e7eb; overflow: hidden; }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-weight: 700; font-size: .95rem; color: var(--dark); gap: 16px; user-select: none; }
.faq-question i { color: var(--primary); font-size: .85rem; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.faq-answer p { padding: 0 24px 20px; font-size: .9rem; color: var(--gray); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 300px; }

/* CTA BANNER */
.cta-banner { background: var(--gradient-dark); padding: 70px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(255,107,0,.1) 0%, transparent 70%); }
.cta-banner h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: 30px; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 30px; border-radius: 50px; font-weight: 700; font-size: .95rem; transition: transform .3s, box-shadow .3s; }
.btn-white { background: #fff; color: var(--dark); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,255,255,.2); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.3); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }

/* FOOTER */
.footer { background: var(--dark-2); padding: 60px 60px 30px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.8; }
.footer-col h4 { color: #fff; font-size: .9rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .05em; }
.footer-col a { display: block; color: rgba(255,255,255,.5); font-size: .88rem; margin-bottom: 10px; transition: color .3s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {  padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .85rem; }
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .3s; }
.footer-bottom a:hover { color: var(--primary); }
.footer-legal { display: flex; gap: 20px; }

/* WHATSAPP BUTTON */
/* BACK TO TOP */
.back-to-top { position: fixed; bottom: 50px; right: 30px; width: 44px; height: 44px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: all .3s; z-index: 998; }
.back-to-top.visible { opacity: 1; visibility: visible; }

/* RESPONSIVE */

.whatsapp-btn { position: fixed; bottom: 120px; right: 30px; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; z-index: 999; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: .3s; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,.55); }
@media (max-width: 1100px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-panel { position: static; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .navbar { padding: 16px 24px; }
    .navbar.scrolled { padding: 12px 24px; }
    .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(11,11,15,.98); flex-direction: column; justify-content: center; align-items: center; gap: 28px; font-size: 1.1rem; }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
    .hero-contact { padding: 120px 24px 60px; }
    .hero-contact h1 { font-size: 2rem; }
    .breadcrumb { padding: 14px 24px; }
    .cards-section { padding: 50px 24px 0; }
    .cards-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .contact-layout { padding: 40px 24px; }
    .map-section { padding: 0 24px 50px; }
    .faq-section { padding: 50px 24px; }
    .cta-banner { padding: 50px 24px; }
    .cta-banner h2 { font-size: 1.5rem; }
    .footer { padding: 50px 24px 24px; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; gap: 12px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-panel { padding: 28px 20px; }
}

@media (max-width: 480px) {
    .cards-grid { grid-template-columns: 1fr; }
    .social-row { gap: 8px; }
    .social-btn { font-size: .8rem; padding: 8px 14px; }
}
