/* ProDrive Academy — Clean Professional Corporate Blue */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1a1a2e;
  background: #ffffff;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #002b5b; text-decoration: none; }
a:hover { color: #4fc3f7; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: #002b5b;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: #444; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

/* ===== NAVIGATION ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 2px solid #f4f6f9;
  box-shadow: 0 2px 8px rgba(0,43,91,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #002b5b;
  letter-spacing: -0.5px;
}

.nav-logo span { color: #4fc3f7; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #002b5b;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover { color: #4fc3f7; }

.nav-cta {
  background: #002b5b;
  color: #ffffff !important;
  padding: 0.55rem 1.3rem;
  border-radius: 4px;
  font-weight: 700;
  transition: background 0.2s;
}

.nav-cta:hover { background: #4fc3f7 !important; color: #002b5b !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #002b5b;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #002b5b 0%, #004080 50%, #0063b1 100%);
  padding: 5rem 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 3rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-content { color: #ffffff; }

.hero-badge {
  display: inline-block;
  background: rgba(79,195,247,0.2);
  color: #4fc3f7;
  border: 1px solid #4fc3f7;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-content h1 {
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.hero-check {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
}

.hero-check::before {
  content: "✓";
  color: #4fc3f7;
  font-weight: 700;
}

.hero-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
}

.hero-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ===== FORM CARD ===== */
.form-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.form-card h3 {
  color: #002b5b;
  margin-bottom: 0.4rem;
  font-size: 1.35rem;
}

.form-card p {
  color: #666;
  font-size: 0.88rem;
  margin-bottom: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.form-group { margin-bottom: 0.9rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #002b5b;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid #dde2ea;
  border-radius: 5px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #1a1a2e;
  background: #fafbfc;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4fc3f7;
  background: #ffffff;
}

.form-group textarea { resize: vertical; min-height: 100px; }

.btn { display: inline-block; padding: 0.75rem 1.8rem; border-radius: 5px; font-size: 1rem; font-weight: 700; cursor: pointer; border: none; transition: all 0.2s; font-family: inherit; }

.btn-primary { background: #002b5b; color: #ffffff; }
.btn-primary:hover { background: #003d82; color: #ffffff; }

.btn-secondary { background: #4fc3f7; color: #002b5b; }
.btn-secondary:hover { background: #29b6f6; color: #002b5b; }

.btn-full { width: 100%; text-align: center; font-size: 1rem; padding: 0.85rem; }

.form-disclaimer {
  font-size: 0.75rem;
  color: #888;
  text-align: center;
  margin-top: 0.7rem;
}

.form-success {
  display: none;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 0.9rem 1rem;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.9rem;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: #002b5b;
  padding: 1.2rem 0;
}

.trust-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
}

.trust-icon {
  font-size: 1.1rem;
  color: #4fc3f7;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  background: #e8f4fd;
  color: #0063b1;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}

.section-header h2 { margin-bottom: 0.8rem; }
.section-header p { color: #555; font-size: 1.05rem; }

/* ===== MODULES ===== */
.modules-section { background: #f4f6f9; }

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.module-card {
  background: #ffffff;
  border-radius: 8px;
  border-top: 4px solid #002b5b;
  padding: 1.8rem;
  box-shadow: 0 2px 12px rgba(0,43,91,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}

.module-card:hover {
  box-shadow: 0 8px 30px rgba(0,43,91,0.14);
  transform: translateY(-3px);
}

.module-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: #4fc3f7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.module-card h3 { color: #002b5b; margin-bottom: 0.8rem; font-size: 1.1rem; }
.module-card p { font-size: 0.9rem; color: #555; margin: 0; }

/* ===== GALLERY ===== */
.gallery-section { background: #ffffff; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-panel {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e0e6ef;
  box-shadow: 0 2px 10px rgba(0,43,91,0.06);
}

.gallery-panel img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  background: #f4f6f9;
  padding: 0.9rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #002b5b;
  text-align: center;
  border-top: 1px solid #dde2ea;
}

/* ===== PRICING ===== */
.pricing-section { background: #f4f6f9; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: #ffffff;
  border-radius: 10px;
  border-top: 4px solid #002b5b;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,43,91,0.08);
  position: relative;
}

.pricing-card.featured {
  border-top-color: #4fc3f7;
  box-shadow: 0 8px 40px rgba(0,43,91,0.15);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #4fc3f7;
  color: #002b5b;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
  letter-spacing: 0.4px;
}

.pricing-tier {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #0063b1;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.pricing-card h3 { color: #002b5b; margin-bottom: 0.5rem; font-size: 1.35rem; }

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #002b5b;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.pricing-amount span { font-size: 1rem; font-weight: 400; color: #666; }

.pricing-desc {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #eef0f4;
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.8rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  border-left: 3px solid #4fc3f7;
  padding-left: 0.8rem;
  margin-bottom: 0.5rem;
  background: #f8faff;
  border-radius: 0 4px 4px 0;
}

.pricing-features li::before {
  content: "✓";
  color: #002b5b;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== HOW IT WORKS ===== */
.how-section { background: #ffffff; }

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.how-step { text-align: center; }

.how-num {
  width: 56px;
  height: 56px;
  background: #002b5b;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.how-step h4 { color: #002b5b; margin-bottom: 0.5rem; }
.how-step p { font-size: 0.88rem; color: #555; }

/* ===== CTA SECTION ===== */
.cta-section { background: #f4f6f9; text-align: center; }

.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: #555; max-width: 580px; margin: 0 auto 2rem; }

.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ===== ABOUT STRIP ===== */
.about-strip { background: #002b5b; padding: 4rem 0; }

.about-strip-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-strip h2 { color: #ffffff; margin-bottom: 1rem; }
.about-strip p { color: rgba(255,255,255,0.8); }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-stat {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1.2rem;
  text-align: center;
  border: 1px solid rgba(79,195,247,0.2);
}

.about-stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: #4fc3f7;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.about-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.75); }

/* ===== FOOTER ===== */
.site-footer { background: #1a1a2e; color: rgba(255,255,255,0.75); padding: 3.5rem 0 1.5rem; }

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand h3 { color: #ffffff; font-size: 1.3rem; margin-bottom: 0.7rem; }
.footer-brand h3 span { color: #4fc3f7; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }

.footer-col h4 { color: #ffffff; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 1rem; }

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: #4fc3f7; }

.footer-address { font-size: 0.85rem; line-height: 1.8; }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-legal a { color: rgba(255,255,255,0.6); }
.footer-legal a:hover { color: #4fc3f7; }

.footer-disclaimer {
  max-width: 1180px;
  margin: 1rem auto 0;
  padding: 1rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #ffffff;
  border-top: 3px solid #002b5b;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  padding: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.88rem;
  color: #444;
  flex: 1;
}

.cookie-text a { color: #002b5b; text-decoration: underline; }

.cookie-actions { display: flex; gap: 0.8rem; flex-shrink: 0; }

.btn-cookie {
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-cookie-accept { background: #002b5b; color: #ffffff; }
.btn-cookie-accept:hover { background: #4fc3f7; color: #002b5b; }

.btn-cookie-decline { background: #f4f6f9; color: #666; border: 1px solid #dde; }
.btn-cookie-decline:hover { background: #e9ecf0; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 9998;
  background: #25d366;
  color: #ffffff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 1.6rem;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #002b5b 0%, #0063b1 100%);
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 { color: #ffffff; margin-bottom: 0.7rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ===== CONTENT PAGE ===== */
.content-section { background: #ffffff; padding: 4rem 0; }

.content-section .container { max-width: 860px; }

.content-block h2 {
  color: #002b5b;
  margin: 2rem 0 0.8rem;
  font-size: 1.35rem;
  border-left: 4px solid #4fc3f7;
  padding-left: 0.8rem;
}

.content-block h2:first-child { margin-top: 0; }

.content-block p { color: #444; line-height: 1.75; }

.content-block ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-block ul li { color: #444; margin-bottom: 0.4rem; line-height: 1.65; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.company-card {
  background: #f4f6f9;
  border-radius: 10px;
  border-top: 4px solid #002b5b;
  padding: 2rem;
}

.company-card h3 { color: #002b5b; margin-bottom: 1.2rem; }

.company-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid #e0e6ef;
}

.company-detail:last-of-type { border-bottom: none; }

.company-detail-icon { color: #4fc3f7; font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

.company-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #0063b1;
  letter-spacing: 0.3px;
  margin-bottom: 0.15rem;
}

.company-detail-value { font-size: 0.92rem; color: #333; line-height: 1.5; }

.wa-btn-large {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: #ffffff;
  padding: 0.85rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1.5rem;
  transition: background 0.2s;
  justify-content: center;
}

.wa-btn-large:hover { background: #1da851; color: #ffffff; }

.contact-form-card {
  background: #ffffff;
  border-radius: 10px;
  border-top: 4px solid #4fc3f7;
  padding: 2rem;
  box-shadow: 0 2px 20px rgba(0,43,91,0.09);
}

.contact-form-card h3 { color: #002b5b; margin-bottom: 0.5rem; }
.contact-form-card > p { color: #555; font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .modules-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #ffffff; padding: 1rem 1.5rem; border-top: 1px solid #f0f0f0; box-shadow: 0 8px 20px rgba(0,0,0,0.1); gap: 1rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .site-nav { position: relative; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  section { padding: 3rem 0; }
  .hero { padding: 3rem 0; }
  h1 { font-size: 1.7rem; }
}
