*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', sans-serif; font-size: 16px; line-height: 1.6; color: #1a1a2e; background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:root {
  --primary: #0a2a6e; --primary-dark: #061844; --primary-light: #1a4aae;
  --accent: #e85d04; --accent-light: #fb8500; --white: #fff; --light: #f4f7fc;
  --gray: #6c757d; --dark: #1a1a2e; --border: #dee2e6;
  --shadow: 0 4px 24px rgba(10,42,110,.10); --shadow-lg: 0 8px 40px rgba(10,42,110,.18);
  --radius: 12px; --transition: all .3s ease;
}
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; color: var(--primary-dark); }
h1 { font-size: clamp(1.8rem,5vw,3.2rem); }
h2 { font-size: clamp(1.5rem,3.5vw,2.4rem); }
h3 { font-size: clamp(1.1rem,2.5vw,1.5rem); }
p { margin-bottom: 1rem; color: #444; }
.section-title { text-align: center; margin-bottom: .5rem; }
.section-subtitle { text-align: center; color: var(--gray); font-size: 1.1rem; margin-bottom: 3rem; }
.text-accent { color: var(--accent); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 80px 0; }
.section-light { background: var(--light); }
.section-dark { background: var(--primary-dark); color: #fff; }
.section-dark h2,.section-dark h3,.section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.8); }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }

.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 2rem; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; border: 2px solid transparent; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,93,4,.4); }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--primary); }
.btn-whatsapp { background: #25d366; color: #fff; border-color: #25d366; }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }
.btn-sm { padding: .55rem 1.2rem; font-size: .9rem; }

.top-bar { background: var(--primary-dark); color: rgba(255,255,255,.85); font-size: .85rem; padding: 8px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.top-bar a { color: rgba(255,255,255,.85); transition: color .2s; }
.top-bar a:hover { color: var(--accent-light); }
.top-bar-item { display: flex; align-items: center; gap: .4rem; }
.top-bar-left { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.top-bar-right { display: flex; gap: 1.2rem; flex-wrap: wrap; }

.site-header { background: #fff; box-shadow: 0 2px 12px rgba(10,42,110,.10); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 1rem; }
.site-logo img { height: 60px; width: auto; }

.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav a { padding: .6rem 1rem; border-radius: 8px; font-weight: 500; font-size: .95rem; color: var(--dark); transition: var(--transition); }
.main-nav a:hover,.main-nav a.active { background: var(--light); color: var(--primary); }
.nav-cta { background: var(--accent) !important; color: #fff !important; padding: .6rem 1.2rem !important; border-radius: 50px !important; }
.nav-cta:hover { background: var(--accent-light) !important; transform: translateY(-1px); }
.header-phone { display: flex; align-items: center; gap: .5rem; font-weight: 700; font-size: 1.05rem; color: var(--primary); white-space: nowrap; }

.hamburger { display: none; background: none; border: 2px solid var(--primary); border-radius: 8px; padding: 6px 10px; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--primary-dark); z-index: 9999; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.4rem; color: #fff; font-weight: 600; padding: .5rem 1rem; }
.mobile-nav a:hover { color: var(--accent-light); }
.mobile-nav-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }

.hero { background: linear-gradient(135deg,var(--primary-dark) 0%,var(--primary) 50%,#1a5276 100%); color: #fff; padding: 100px 0 80px; position: relative; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: .4rem; background: rgba(232,93,4,.2); border: 1px solid var(--accent); color: var(--accent-light); padding: .4rem 1rem; border-radius: 50px; font-size: .85rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero h1 span { color: var(--accent-light); }
.hero p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-stat .num { font-size: 2rem; font-weight: 800; color: var(--accent-light); display: block; }
.hero-stat .lbl { font-size: .85rem; color: rgba(255,255,255,.7); }
.hero-card { background: rgba(255,255,255,.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); padding: 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-service-item { background: rgba(255,255,255,.08); border-radius: 10px; padding: 1rem; text-align: center; transition: var(--transition); }
.hero-service-item:hover { background: rgba(255,255,255,.15); transform: translateY(-3px); }
.hero-service-item .icon { font-size: 2rem; margin-bottom: .5rem; }
.hero-service-item span { font-size: .8rem; color: rgba(255,255,255,.85); display: block; }
.hero-service-item strong { font-size: .85rem; color: #fff; display: block; }

.trust-bar { background: var(--accent); padding: 18px 0; }
.trust-bar .container { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .5rem; color: #fff; font-weight: 600; font-size: .9rem; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem; }
.service-card { background: #fff; border-radius: var(--radius); padding: 2rem; border: 1px solid var(--border); transition: var(--transition); box-shadow: var(--shadow); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.service-icon { width: 64px; height: 64px; background: linear-gradient(135deg,var(--primary),var(--primary-light)); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; font-size: 1.8rem; }
.service-card h3 { margin-bottom: .6rem; }
.service-card p { font-size: .9rem; color: var(--gray); margin: 0; }
.service-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.service-tag { background: var(--light); color: var(--primary); font-size: .75rem; font-weight: 600; padding: .25rem .7rem; border-radius: 20px; }
.service-card.featured { background: linear-gradient(135deg,var(--primary),var(--primary-light)); color: #fff; border-color: var(--primary); }
.service-card.featured h3,.service-card.featured p { color: #fff; }
.service-card.featured p { color: rgba(255,255,255,.85); }
.service-card.featured .service-icon { background: rgba(255,255,255,.15); }
.service-card.featured .service-tag { background: rgba(255,255,255,.15); color: #fff; }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 2rem; }
.why-item { text-align: center; }
.why-icon { width: 80px; height: 80px; margin: 0 auto 1rem; background: var(--light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; border: 3px solid var(--border); }
.why-item h4 { margin-bottom: .4rem; }
.why-item p { font-size: .9rem; color: var(--gray); margin: 0; }

.areas-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(155px,1fr)); gap: 1rem; }
.area-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem 1rem; text-align: center; transition: var(--transition); box-shadow: 0 2px 8px rgba(10,42,110,.06); }
.area-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow); }
.area-card a { color: var(--dark); }
.area-card:hover a { color: var(--primary); }
.area-icon { font-size: 1.8rem; margin-bottom: .5rem; }
.area-card strong { display: block; font-size: .95rem; font-weight: 600; margin-bottom: .2rem; }
.area-card small { font-size: .78rem; color: var(--gray); }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem; }
.review-card { background: #fff; border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); border: 1px solid var(--border); position: relative; }
.review-card::before { content: '"'; position: absolute; top: 1rem; right: 1.5rem; font-size: 4rem; color: var(--light); font-family: serif; line-height: 1; }
.review-stars { display: flex; gap: 2px; margin-bottom: .8rem; }
.star { color: #ffc107; font-size: 1rem; }
.review-text { font-size: .95rem; color: #444; margin-bottom: 1.2rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: .8rem; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--primary),var(--accent)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1rem; }
.reviewer-name { font-weight: 700; font-size: .9rem; }
.review-date { font-size: .78rem; color: var(--gray); }
.reviews-summary { background: var(--primary-dark); color: #fff; border-radius: var(--radius); padding: 2rem; text-align: center; margin-bottom: 2rem; }
.reviews-summary .big-rating { font-size: 4rem; font-weight: 800; color: var(--accent-light); line-height: 1; }
.stars-row { justify-content: center; display: flex; gap: 4px; margin: .5rem 0; }
.stars-row span { font-size: 1.5rem; color: #ffc107; }

.cta-section { background: linear-gradient(135deg,var(--accent) 0%,#c44d00 100%); padding: 80px 0; text-align: center; }
.cta-section h2,.cta-section p { color: #fff; }
.cta-section p { font-size: 1.15rem; margin-bottom: 2rem; opacity: .9; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 2rem; }
.contact-icon { width: 50px; height: 50px; min-width: 50px; background: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.contact-detail h4 { margin-bottom: .2rem; font-size: .85rem; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: .05em; }
.contact-detail a,.contact-detail p { font-weight: 600; font-size: 1rem; margin: 0; color: var(--dark); transition: color .2s; }
.contact-detail a:hover { color: var(--primary); }
.contact-form { background: var(--light); border-radius: var(--radius); padding: 2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; }
.form-group input,.form-group select,.form-group textarea { width: 100%; padding: .8rem 1rem; border: 2px solid var(--border); border-radius: 8px; font-size: 1rem; font-family: inherit; transition: border-color .2s; background: #fff; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color: var(--primary); outline: none; }
.form-group textarea { min-height: 120px; resize: vertical; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-feature { display: flex; gap: .8rem; margin-bottom: 1rem; align-items: flex-start; }
.about-feature-icon { width: 32px; height: 32px; min-width: 32px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .9rem; margin-top: 2px; }
.about-feature p { margin: 0; font-size: .95rem; }
.about-feature strong { display: block; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 1rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; position: relative; cursor: pointer; }
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay { position: absolute; inset: 0; background: rgba(10,42,110,.5); opacity: 0; display: flex; align-items: center; justify-content: center; transition: opacity .3s; }
.gallery-item .overlay span { color: #fff; font-size: 2rem; }

.location-hero { background: linear-gradient(135deg,var(--primary-dark),var(--primary)); color: #fff; padding: 60px 0; }
.location-hero h1 { color: #fff; }
.location-services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1rem; margin: 2rem 0; }
.loc-service { background: var(--light); border-radius: 10px; padding: 1.2rem; border-left: 4px solid var(--accent); }
.loc-service h4 { font-size: 1rem; margin-bottom: .3rem; }
.loc-service p { font-size: .85rem; color: var(--gray); margin: 0; }
.breadcrumb { padding: 12px 0; font-size: .85rem; color: var(--gray); }
.breadcrumb a { color: var(--primary); }
.breadcrumb span { margin: 0 .4rem; }

.page-hero { background: linear-gradient(135deg,var(--primary-dark),var(--primary)); padding: 60px 0; text-align: center; }
.page-hero h1 { color: #fff; margin-bottom: .6rem; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.page-hero-badge { display: inline-flex; align-items: center; gap: .4rem; background: rgba(232,93,4,.2); border: 1px solid var(--accent); color: var(--accent-light); padding: .35rem .9rem; border-radius: 50px; font-size: .8rem; font-weight: 600; margin-bottom: 1rem; }

.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: .8rem; overflow: hidden; }
.faq-q { padding: 1.2rem 1.5rem; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; background: #fff; transition: background .2s; }
.faq-q:hover { background: var(--light); }
.faq-q .icon { transition: transform .3s; font-size: 1.2rem; color: var(--accent); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.5rem 1.2rem; font-size: .95rem; color: var(--gray); }
.faq-item.open .faq-a { display: block; }

.site-footer { background: var(--primary-dark); color: rgba(255,255,255,.8); }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-col h4 { color: #fff; margin-bottom: 1.2rem; font-size: 1rem; position: relative; padding-bottom: .6rem; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--accent); }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { font-size: .9rem; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent-light); }
.footer-contact-item { display: flex; gap: .6rem; margin-bottom: .8rem; font-size: .9rem; align-items: flex-start; }
.footer-contact-item a { color: rgba(255,255,255,.7); transition: color .2s; }
.footer-contact-item a:hover { color: var(--accent-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .85rem; margin: 0; color: rgba(255,255,255,.5); }
.footer-bottom a { color: var(--accent-light); }

.float-buttons { position: fixed; bottom: 2rem; right: 1.5rem; display: flex; flex-direction: column; gap: 1rem; z-index: 9000; }
.float-btn { width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,.25); font-size: 1.4rem; transition: var(--transition); text-decoration: none; position: relative; }
.float-btn:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(0,0,0,.35); }
.float-wa { background: #25d366; color: #fff; }
.float-tel { background: var(--accent); color: #fff; }
.float-pulse { position: absolute; width: 100%; height: 100%; border-radius: 50%; background: #25d366; animation: pulse 2s infinite; z-index: -1; }
.float-tel .float-pulse { background: var(--accent); }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 55px 0; }
  .hamburger { display: flex; }
  .main-nav,.header-phone { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .grid-2,.grid-3 { grid-template-columns: 1fr; }
  .top-bar-left { display: none; }
  .hero { padding: 70px 0 55px; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .float-buttons { bottom: 1.2rem; right: 1rem; }
  .float-btn { width: 52px; height: 52px; font-size: 1.2rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
}
