/* ==========================================================
   NOTEBOOKS
========================================================== */
@media (max-width: 1200px) {
  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero-content {
    gap: 50px;
  }

  .hero-image img {
    width: 380px;
  }

  .about-grid {
    gap: 60px;
    grid-template-columns: 280px 1fr;
  }
}

/* ==========================================================
   TABLETS
========================================================== */

@media (max-width: 992px) {
  section {
    padding: 90px 0;
  }

  .menu {
    display: none;
  }

  .menu a {
    display: inline-block;
    position: relative;
    width: fit-content;
    transition: 0.3s;
  }

  .menu a::after {
    bottom: -5px;
  }

  .menu a:hover,
  .menu a:active {
    color: var(--primary);
  }

  .menu a:hover::after,
  .menu a:active::after {
    width: 100%;
  }

  .btn-nav {
    display: none;
  }

  .menu-mobile {
    display: flex;
    color: var(--primary);
    z-index: 1001;
  }

  .hero {
    padding-top: 130px;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-text p {
    max-width: 700px;
    margin: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    order: -1;
    margin-bottom: 30px;
  }

  .hero-image img {
    width: 360px;
  }

  .shape {
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .hero-text {
    position: relative;
    z-index: 2;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .about-image {
    max-width: 300px;
    margin: auto;
  }

  .numbers {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .menu {
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 20px;
    padding: 25px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: none !important;
  }

  .menu.active {
    display: flex !important;
  }
}

/* ==========================================================
   CELULARES GRANDES
========================================================== */

@media (max-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  p {
    font-size: 0.98rem;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-image img {
    width: 300px;
  }

  .shape {
    width: 330px;
    height: 330px;
  }

  .quote h2 {
    font-size: 2rem;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .timeline div {
    padding: 20px 14px;
    font-size: 0.9rem;
  }

  .timeline div::before {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
    margin: 0 auto 14px;
  }

  .numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
  }

  .numbers h3 {
    font-size: 2rem;
  }

  .card {
    padding: 30px;
  }
}

/* ==========================================================
   CELULARES
========================================================== */

@media (max-width: 576px) {
  .container {
    width: 92%;
  }

  section {
    padding: 70px 0;
  }

  header {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }

  .navbar {
    height: 75px;
  }

  .logo {
    width: 120px;
  }

  h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.9rem;
  }

  .subtitle {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-image img {
    width: 250px;
  }

  .shape {
    width: 260px;
    height: 260px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .about-image {
    max-width: 220px;
  }

  .about-image::before {
    left: -10px;
    top: 10px;
  }

  .numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    align-items: stretch;
  }

  .quote {
    padding: 70px 0;
  }

  .quote h2 {
    font-size: 1.7rem;
  }

  .card {
    padding: 25px;
  }

  .card h3 {
    font-size: 1.7rem;
  }

  .timeline div {
    padding: 18px 12px;
    font-size: 0.85rem;
  }

  .contact {
    text-align: center;
  }

  .contact iframe {
    min-height: 300px;
  }

  footer {
    padding: 24px 16px;
  }

  footer p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
  }

  .whatsapp {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 70px;
  }

  .whatsapp i {
    font-size: 1.8rem;
  }

  .care-statement {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 22px;
  }
}

/* ==========================================================
   CELULARES PEQUENOS
========================================================== */

@media (max-width: 400px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero-image img {
    width: 220px;
  }

  .shape {
    width: 240px;
    height: 240px;
  }

  .btn {
    padding: 14px 20px;
  }

  .btn-outline {
    padding: 14px 20px;
  }
}
