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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  background: #f5f5f5;
  color: #111;
}

.container {
  width: min(1180px, 90%);
  margin: auto;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  padding: 18px 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(12px);
}

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

.logo {
  width: 200px;
  object-fit: contain;
  background: transparent;
}

.menu {
  display: flex;
  gap: 28px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.nav-btn,
.btn {
  text-decoration: none;
  border-radius: 8px;
  font-weight: 900;
  display: inline-block;
}

.nav-btn {
  background: #e30613;
  color: #fff;
  padding: 13px 22px;
}

.hero {
  min-height: 100vh;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.55), rgba(0,0,0,.2)),
    url(https://i.imgur.com/bNy2HKJ.jpeg);
  background-size: cover;
  background-position: center right;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 180px; /* aumenta este valor */
    padding-bottom: 60px;
}

.tag {
  color: #e30613;
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 14px;
}

h1 {
  font-size: clamp(42px, 6vw, 82px);
  line-height: .95;
  margin: 18px 0 25px;
}

.hero p {
  color: #f1f1f1;
  font-size: 20px;
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 35px;
}

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

.btn {
  padding: 17px 32px;
}

.primary {
  background: #e30613;
  color: white;
}

.secondary {
  background: white;
  color: #111;
}

.float-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #25d366;
  color: white;
  padding: 16px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  z-index: 1000;
  box-shadow: 0 15px 35px rgba(0,0,0,.3);
}

.trust-bar {
  background: #e30613;
  color: white;
  padding: 25px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
  font-weight: 900;
}

.section {
  padding: 95px 0;
}

.about {
  background: white;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 45px;
  align-items: center;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  margin: 15px 0 25px;
}

.about p,
.section-title p,
.why p,
.step p,
.service-card p,
.testimonial p,
.contact p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

.about-card {
  background: #111;
  color: white;
  padding: 45px;
  border-radius: 22px;
  border-bottom: 8px solid #e30613;
  box-shadow: 0 25px 55px rgba(0,0,0,.25);
}

.about-card h3 {
  font-size: 36px;
  margin-bottom: 18px;
}

.about-card p {
  color: #ddd;
}

.services {
  background: #f6f6f6;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.service-grid,
.why-grid,
.steps-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card,
.why-item,
.step,
.testimonial,
.faq-box {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
  border-bottom: 5px solid #e30613;
}

.service-card h3,
.why-item h3,
.step h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.service-card {
  transition: .35s;
}

.service-card:hover,
.why-item:hover,
.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,.18);
}

.why {
  background: #111;
  color: white;
}

.why .section-title p,
.why p {
  color: #ddd;
}

.why-item {
  background: #181818;
  color: white;
}

.why-item p {
  color: #ccc;
}

.steps {
  background: white;
}

.step span {
  display: inline-block;
  color: #e30613;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 15px;
}

.testimonials {
  background: #f6f6f6;
}

.testimonial strong {
  color: #e30613;
  display: block;
  margin-top: 18px;
}

.faq {
  background: white;
}

.faq-box {
  margin-bottom: 16px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: none;
  margin-top: 15px;
}

.faq-box.active .faq-answer {
  display: block;
}

.contact {
  padding: 95px 0;
  background: #e30613;
  color: white;
}

.contact h2,
.contact p {
  color: white;
}

.contact-card {
  background: white;
  color: #111;
  padding: 40px;
  border-radius: 22px;
}

.contact-card p {
  margin-bottom: 14px;
  color: #111;
}

footer {
  background: #050505;
  color: white;
  padding: 28px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* animações */
.reveal {
  opacity: 0;
  transform: translateY(55px);
  transition: .8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* responsivo */
@media (max-width: 950px) {
  .menu {
    display: none;
  }

  .trust-grid,
  .service-grid,
  .why-grid,
  .steps-grid,
  .testimonial-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    background-position: center;
  }

  .nav-btn {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
.navbar.scrolled {
  background: rgba(0,0,0,.92);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-family: inherit;
  font-size: 15px;
}

.contact-card textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-card button {
  border: none;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}
/* ===== CONTACTOS HERO ===== */

.hero-contactos{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin:30px 0;
}

.hero-phone{
    display:flex;
    flex-direction:column;
    justify-content:center;

    min-width:220px;

    padding:15px 20px;

    background:#e30613;

    color:#fff;

    text-decoration:none;

    border-radius:10px;

    transition:.3s;
}

.hero-phone:hover{
    background:#b8000f;
    transform:translateY(-3px);
}

.hero-phone span{
    font-size:13px;
    opacity:.9;
}

.hero-phone strong{
    font-size:22px;
    margin-top:5px;
}

.whatsapp{
    background:#25D366;
}

.whatsapp:hover{
    background:#1fb357;
}

@media(max-width:768px){

.hero-contactos{
    flex-direction:column;
}

.hero-phone{
    width:100%;
}

}