/* Estilos para o site Doctor Medical RD Alpha */

:root {
  --primary-color: #1A2B5F;    /* Azul marinho */
  --secondary-color: #4ECDC4;  /* Verde água */
  --accent-color: #FFD700;     /* Amarelo */
  --light-color: #FFFFFF;      /* Branco */
  --light-gray: #F5F5F5;       /* Cinza claro */
  --dark-color: #333333;       /* Cinza escuro */
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-accent {
  color: var(--accent-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-accent {
  background-color: var(--accent-color) !important;
}

.bg-light-gray {
  background-color: var(--light-gray) !important;
}

/* Header */
.navbar {
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 60px;
}

.navbar-nav .nav-link {
  color: var(--primary-color);
  font-weight: 600;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar-nav .nav-item.active .nav-link {
  color: var(--secondary-color);
}

.btn-contact {
  background-color: var(--secondary-color);
  color: white;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 43, 95, 0.7), rgba(26, 43, 95, 0.9));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.btn-hero {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.btn-primary-custom {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}

.btn-primary-custom:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--primary-color);
}

.btn-outline-light:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--primary-color);
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
}

.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Adicione o restante do CSS do arquivo style.css original aqui */

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

.floating-whatsapp:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 100px;
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .process-icon::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .navbar-brand img {
    height: 50px;
  }
  
  .hero-section {
    height: auto;
    padding: 100px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn-hero {
    padding: 10px 20px;
    margin-bottom: 10px;
    display: block;
    width: 100%;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .counter-value {
    font-size: 2.5rem;
  }
  
  .covid-title {
    font-size: 2rem;
  }
  
  .covid-subtitle {
    font-size: 1.2rem;
  }
  
  .covid-quote {
    font-size: 1.2rem;
  }
  
  .map-cta {
    font-size: 1.2rem;
  }
  
  .partners-carousel {
    padding: 0 20px;
  }
  
  .floating-whatsapp {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 25px;
  }
  
  .back-to-top {
    right: 30px;
    bottom: 100px;
  }
}
