/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #e63946;
  --primary-dark: #c1121f;
  --secondary: #1d3557;
  --accent: #25d366;
  --accent-dark: #128c7e;
  --bg: #f8f9fa;
  --white: #ffffff;
  --text: #212529;
  --text-muted: #6c757d;
  --border: #dee2e6;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(230,57,70,0.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(230,57,70,0.45); }

.btn-whatsapp {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; }

/* ===== FLOATING BUTTONS ===== */
.float-buttons {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  cursor: pointer;
}
.float-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.float-btn:hover { transform: translateY(-3px) scale(1.04); }

.float-call { background: var(--primary); }
.float-call:hover { background: var(--primary-dark); }
.float-whatsapp { background: var(--accent); }
.float-whatsapp:hover { background: var(--accent-dark); }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon { font-size: 2rem; }
.logo-main { display: block; font-size: 1.3rem; font-weight: 900; color: var(--primary); line-height: 1; letter-spacing: 1px; }
.logo-sub { display: block; font-size: 0.65rem; font-weight: 600; color: var(--secondary); letter-spacing: 2px; text-transform: uppercase; }

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { transform: scaleX(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29,53,87,0.92) 0%, rgba(230,57,70,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 80px 20px;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #ffd700;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.highlight { color: #ffd700; }
.highlight-light { color: #ffd700; }

.hero-desc {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-hero-call {
  background: var(--primary);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(230,57,70,0.5);
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.btn-hero-call:hover { background: var(--primary-dark); transform: translateY(-3px); animation: none; }

.btn-hero-wp {
  background: var(--accent);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.btn-hero-wp:hover { background: var(--accent-dark); transform: translateY(-3px); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(230,57,70,0.5); }
  50% { box-shadow: 0 6px 40px rgba(230,57,70,0.8); }
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 2rem; font-weight: 900; color: #ffd700; line-height: 1; }
.stat-label { font-size: 0.8rem; opacity: 0.85; font-weight: 500; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.3); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.7);
  border-bottom: 2px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}
@keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(6px)} }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--secondary);
  padding: 20px 0;
}
.trust-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}
.trust-icon { font-size: 1.4rem; }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header.light { color: var(--white); }
.section-tag {
  display: inline-block;
  background: rgba(230,57,70,0.1);
  color: var(--primary);
  border: 1px solid rgba(230,57,70,0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header.light .section-tag {
  background: rgba(255,255,255,0.15);
  color: #ffd700;
  border-color: rgba(255,255,255,0.3);
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--secondary);
}
.section-header.light h2 { color: var(--white); }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.section-header.light p { color: rgba(255,255,255,0.8); }

/* ===== SERVICES ===== */
.services {
  padding: 96px 0;
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.service-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
}
.service-badge {
  position: absolute;
  top: -12px; right: 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
}
.service-icon { font-size: 2.8rem; margin-bottom: 16px; }
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  transition: gap var(--transition);
}
.service-link:hover { text-decoration: underline; }

/* ===== PHOTO SECTION ===== */
.photo-section { padding: 80px 0; background: var(--white); }
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.photo-main { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.photo-main img { width: 100%; height: 420px; object-fit: cover; }
.photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--white);
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.photo-caption strong { font-size: 1.2rem; }
.photo-caption span { font-size: 0.9rem; opacity: 0.85; }

.photo-side { display: flex; flex-direction: column; gap: 24px; }
.photo-side img { border-radius: var(--radius-lg); height: 220px; object-fit: cover; width: 100%; }
.photo-info { padding: 8px 0; }
.photo-info h3 { font-size: 1.5rem; font-weight: 800; color: var(--secondary); margin-bottom: 12px; }
.photo-info p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }

/* ===== BRANDS ===== */
.brands { padding: 96px 0; background: var(--bg); }
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.brand-item {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--secondary);
  transition: var(--transition);
  cursor: default;
}
.brand-item:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230,57,70,0.15);
}
.brands-cta {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.brands-cta p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 20px; }

/* ===== ABOUT ===== */
.about { padding: 96px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image { position: relative; }
.about-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-years { display: block; font-size: 3rem; font-weight: 900; line-height: 1; }
.about-badge span { font-size: 0.85rem; font-weight: 600; opacity: 0.9; }

.about-content .section-tag { margin-bottom: 12px; }
.about-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; color: var(--secondary); margin-bottom: 20px; }
.about-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.about-list { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.about-list li { font-weight: 600; color: var(--text); font-size: 0.95rem; }
.about-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }

/* ===== WHY US ===== */
.why-us {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--secondary) 0%, #2d4a6e 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.why-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: var(--white);
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.why-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,215,0,0.4);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; color: #ffd700; }
.why-card p { color: rgba(255,255,255,0.8); line-height: 1.7; font-size: 0.95rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #c1121f 100%);
  padding: 64px 0;
}
.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: var(--white); margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.9); font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-cta-call {
  background: var(--white);
  color: var(--primary);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.btn-cta-call:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }

.btn-cta-wp {
  background: var(--accent);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}
.btn-cta-wp:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* ===== FAQ ===== */
.faq { padding: 96px 0; background: var(--bg); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  text-align: left;
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { color: var(--primary); }
.faq-arrow { font-size: 0.8rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-question.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 200px; }
.faq-answer p { padding: 0 28px 22px; color: var(--text-muted); line-height: 1.7; }

/* ===== SEO CONTENT ===== */
.seo-content { padding: 80px 0; background: var(--white); }
.seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.seo-article h2 { font-size: 1.4rem; font-weight: 800; color: var(--secondary); margin-bottom: 16px; }
.seo-article p { color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; font-size: 0.95rem; }
.seo-article strong { color: var(--text); }

/* ===== CONTACT ===== */
.contact { padding: 96px 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
}
.contact-icon { font-size: 1.8rem; flex-shrink: 0; }
.contact-card h3 { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: 1rem; color: var(--text); font-weight: 600; line-height: 1.6; }
.contact-card a:hover { color: var(--primary); }
.contact-buttons { display: flex; flex-direction: column; gap: 12px; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.contact-map iframe { display: block; }

/* ===== FOOTER ===== */
.footer { background: var(--secondary); color: var(--white); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-main { color: #ffd700; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.6); }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.7; }
.footer-links h4, .footer-contact h4 { font-size: 1rem; font-weight: 800; color: #ffd700; margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.75); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 10px; line-height: 1.6; }
.footer-contact a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.footer-contact a:hover { color: #ffd700; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-btn {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}
.social-btn.call { background: var(--primary); color: var(--white); }
.social-btn.wp { background: var(--accent); color: var(--white); }
.social-btn:hover { opacity: 0.85; transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 6px; }
.footer-seo { font-size: 0.75rem !important; color: rgba(255,255,255,0.3) !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 360px; }
  .about-badge { bottom: -16px; right: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .seo-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 24px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 20px;
    z-index: 899;
  }
  .hamburger { display: flex; }
  .hero-content { padding: 60px 20px; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.6rem; }
  .trust-grid { gap: 20px; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-main img { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-content { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .float-btn span { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; }
  .float-buttons { bottom: 20px; right: 16px; }
  .about-badge { position: static; margin-top: 16px; display: inline-flex; align-items: center; gap: 12px; }
  .about-years { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-hero-call, .btn-hero-wp { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .btn-cta-call, .btn-cta-wp { justify-content: center; }
}
