/* Mobile First - Default Styles for Mobile */

/* Medium Devices (Tablets) */
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
 }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero {
    padding: 180px 0 120px;
  }
  
  .hero h1 {
    font-size: 3.2rem;
  }
  
  .hero-buttons {
    gap: 30px;
  }
  
  .hero-benefits {
    gap: 60px;
  }
  
  .benefit-number {
    font-size: 2.5rem;
  }
  
  .problems-grid,
  .solutions-grid,
  .services-grid,
  .features-grid,
  .pricing-grid,
  .benefits-grid,
 .audience-grid,
  .urgency-grid {
    gap: 40px;
  }
  
  .gallery-grid {
    gap: 20px;
  }
  
.footer-content {
    gap: 40px;
  }
  
  .footer-bottom {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-bottom p {
    margin: 0;
    width: 100%;
    text-align: center;
  }
}
  .guarantees {
    gap: 30px;
  }
}

/* Large Devices (Desktops) */
@media (min-width: 1024px) {
  .container {
    width: 85%;
  }
  
  h1 {
    font-size: 3.5rem;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .hero p {
    font-size: 1.3rem;
  }
  
  .hero-buttons {
    gap: 40px;
  }
  
  .nav-menu li {
    margin-left: 35px;
  }
  
  .hamburger {
    display: none;
  }
  
  .whatsapp-cta {
    display: block;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cta-section h3 {
    font-size: 2rem;
  }
  
  .cta-section p {
    font-size: 1.2rem;
  }
}

/* Extra Large Devices */
@media (min-width: 1200px) {
  .container {
    width: 80%;
  }
  
  section {
    padding: 100px 0;
  }
}

/* Mobile Specific Styles */
@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
 }
  
  h2 {
    font-size: 1.8rem;
 }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .header .container {
    padding: 10px 0;
  }
  
  .logo h1 {
    font-size: 1.5rem;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white-color);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow);
    padding: 20px 0;
    height: calc(100vh - 70px);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 15px 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
 }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
 }
  
  .hero {
    padding: 130px 0 80px;
    margin-top: 70px;
  }
  
  .hero h1 {
    font-size: 2rem;
 }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-benefits {
    gap: 20px;
  }
  
  .benefit-number {
    font-size: 1.5rem;
  }
  
  .benefit-text {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .problems-grid,
  .solutions-grid,
  .services-grid,
  .features-grid,
  .pricing-grid,
  .benefits-grid,
  .audience-grid,
  .urgency-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .gallery-item {
    height: 150px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .guarantees {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-section {
    padding: 30px 20px;
  }
  
  .cta-section h3 {
    font-size: 1.5rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
  
  .whatsapp-fixed {
    display: flex;
  }
  
  .whatsapp-cta {
    display: none;
  }
  
  .testimonial-slider {
    height: 350px;
  }
  
  .footer-bottom {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-bottom p {
    margin: 0;
    width: 100%;
    text-align: center;
  }
