/*!
Theme Name: Maternidade Hospital HELP
Theme URI: https://hospitalhelp.com.br
Description: Landing page profissional para agendamento de visitas à Maternidade Hospital HELP
Version: 1.0.0
Author: Hospital HELP
Author URI: https://hospitalhelp.com.br
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: maternidade-help
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

/* ============================================
   VARIÁVEIS DE COR E ESTILOS GLOBAIS
   ============================================ */

:root {
  --primary-color: #1f3c70;
  --primary-light: #1876ba;
  --accent-color: #00a098;
  --text-color: #1f3c70;
  --text-light: #6b7280;
  --border-color: #e5e7eb;
  --bg-light: #f8fafb;
  --bg-lighter: #f0f4f8;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ============================================
   RESET E ESTILOS BASE
   ============================================ */

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

html,
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

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

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

/* ============================================
   CONTAINER E LAYOUT
   ============================================ */

.container {
  max-width: 1600px;
    margin: 0 auto;
	width: 100%;
}

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

.col {
  grid-column: span 12;
}

.col-md-6 {
  grid-column: span 12;
}

.col-lg-6 {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .col-md-6 {
    grid-column: span 6;
  }

  .col-lg-6 {
    grid-column: span 6;
  }
}

@media (min-width: 1024px) {
  .col-lg-6 {
    grid-column: span 6;
  }
}

/* ============================================
   HEADER E NAVEGAÇÃO
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.site-logo img {
  height: 50px;
  width: auto;

}

.site-navigation {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-navigation a {
  font-weight: 500;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.site-navigation a:hover {
  color: var(--primary-light);
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #008b7f;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.cta-button.large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:0.5" /><stop offset="100%" style="stop-color:rgba(0,0,0,0.1);stop-opacity:0.5" /></linearGradient></defs><rect width="1200" height="600" fill="url(%23grad)"/></svg>');
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.4) !important;
}



.hero-content {
	position: relative;
  	z-index: 2;
  	color: var(--white);
  	max-width: 600px;
	
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: slideInUp 0.8s ease-out;
	font-size: 60px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
  line-height: 1.8;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   SEÇÕES GERAIS
   ============================================ */

.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section.light-bg {
  background-color: var(--bg-lighter);
}

.section.gradient-bg {
  background: linear-gradient(135deg, rgba(248, 250, 251, 1) 0%, rgba(240, 244, 248, 1) 100%);
}

/* ============================================
   CARDS E FEATURES
   ============================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.feature-card .icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 160, 152, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ============================================
   IMAGENS E GALERIA
   ============================================ */

.image-block {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   FORMULÁRIO DE AGENDAMENTO
   ============================================ */

.scheduling-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.form-group label .required {
  color: #ef4444;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(24, 118, 186, 0.1);
}

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

.form-submit {
  width: 100%;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 1rem;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background-color: #008b7f;
  box-shadow: var(--shadow-lg);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

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

  h2 {
    font-size: 1.75rem;
  }

  .site-navigation {
    display: none;
  }

  .hero-section {
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section {
    padding: 2rem 0;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   UTILITÁRIOS
   ============================================ */

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

.text-white {
  color: var(--white);
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

.wpforms-container.form-custom {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
}

.tour {
	display: flex; /* Enables CSS flexbox */
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
	padding-top: 20px;
  
}

