/* Estilos gerais */
:root {
  --color-white: #ffffff;
  --color-off-white: #f8f7f5;
  --color-beige: #f5f0e6;
  --color-lilac: #e6e0f0;
  --color-salmon: #ffdfd6;
  --color-text: #4a4a4a;
  --color-accent: #b39ddb;
  --font-primary: 'Cormorant Garamond', serif;
  --font-secondary: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition);
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--color-accent);
  color: white;
  border: none;
  border-radius: 30px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background-color: #9575cd;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

.btn-outline:hover {
  background-color: var(--color-accent);
  color: white;
}

.section {
  padding: 6rem 0;
}

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

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--color-accent);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.header.scrolled {
  padding: 0.5rem 0;
}

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

.logo {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 500;
}

.logo span {
  color: var(--color-accent);
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 2.5rem;
}

.nav-link {
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)), url('../images/psicologa_fundo.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 700px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

/* Sobre Section */
.sobre {
  background-color: var(--color-off-white);
}

.sobre-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.sobre-img {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sobre-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.sobre-text {
  flex: 1;
}

.sobre-text h3 {
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

/* Abordagem Section */
.abordagem {
  background-color: var(--color-beige);
}

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

.abordagem-card {
  background-color: white;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.abordagem-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.abordagem-card-icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.abordagem-card h3 {
  margin-bottom: 1rem;
}

/* Especialidades Section */
.especialidades-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.especialidade-card {
  background-color: var(--color-lilac);
  padding: 2.5rem;
  border-radius: 10px;
  transition: var(--transition);
}

.especialidade-card:hover {
  background-color: var(--color-accent);
  color: white;
}

.especialidade-card h3 {
  margin-bottom: 1rem;
}

/* Citações Section */
.citacoes {
  background-color: var(--color-salmon);
  text-align: center;
}

.citacao {
  max-width: 800px;
  margin: 0 auto;
}

.citacao-text {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.citacao-autor {
  font-weight: 500;
}

/* Agendamento Section */
.agendamento {
  background-color: var(--color-off-white);
}

.agendamento-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 4rem;
}

.agendamento-info {
  padding-right: 2rem;
}

.agendamento-info h3 {
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.agendamento-info ul {
  list-style: none;
  margin-bottom: 2rem;
}

.agendamento-info li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.agendamento-info li i {
  margin-right: 0.5rem;
  color: var(--color-accent);
}

.agendamento-form {
  background-color: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(179, 157, 219, 0.2);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234a4a4a' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
}

/* Contato Section */
.contato {
  background-color: white;
}

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

.contato-info h3 {
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.contato-details {
  list-style: none;
}

.contato-details li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.contato-details i {
  width: 40px;
  height: 40px;
  background-color: var(--color-lilac);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--color-accent);
  font-size: 1.2rem;
}

.contato-map {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

/* Footer */
.footer {
  background-color: var(--color-beige);
  padding: 4rem 0 2rem;
}

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

.footer-logo {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--color-accent);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.2rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--color-accent);
  color: white;
}

.footer-links h4 {
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .sobre-content {
    flex-direction: column;
  }
  
  .sobre-img, .sobre-text {
    flex: none;
    width: 100%;
  }
  
  .agendamento-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 1rem 0;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    margin: 1.5rem 0;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-btns {
    flex-direction: column;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .citacao-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .agendamento-form {
    padding: 2rem;
  }
}

/* Estilos para o container do Google Calendar */
.google-calendar-container {
  width: 100%;
  margin: 20px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.calendar-info {
  margin-top: 15px;
  font-style: italic;
  color: #666;
  text-align: center;
}

/* Adicionar ao final do arquivo CSS existente */

.confirmation-button-container {
  margin-top: 20px;
  text-align: center;
}

.confirmation-note {
  margin-top: 10px;
  font-style: italic;
  color: #666;
  text-align: center;
  font-size: 0.9em;
}

/* Estilos para a seleção de tipo de atendimento */
.appointment-type-selection {
  margin-bottom: 30px;
}

.type-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
  position: sticky;
  top: 100px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 15px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.type-btn {
  padding: 15px 30px;
  border: 2px solid var(--color-accent);
  background-color: white;
  color: var(--color-accent);
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.type-btn:hover, .type-btn.active {
  background-color: var(--color-accent);
  color: white;
}

.calendar-container {
  margin-top: 30px;
}

.calendar-container h5 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--color-accent);
}

.agendamento-img {
  margin-top: 30px;
  text-align: center;
}

.agendamento-img img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-title h4 {
  text-align: center;
  margin-top: 10px;
  color: var(--color-accent);
  font-weight: 500;
}

.type-options-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.agendamento-img {
  margin-bottom: 30px;
  text-align: center;
}

.agendamento-img img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.calendar-confirmation-btn {
  display: block;
  margin: 20px auto;
  padding: 12px 24px;
  background-color: var(--color-accent);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.calendar-confirmation-btn:hover {
  background-color: var(--color-accent-dark);
}

.calendar-info {
  margin-bottom: 20px;
  font-style: italic;
  color: #666;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  width: 90%;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.close-modal:hover {
  color: var(--color-accent);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.form-group input:focus {
  border-color: var(--color-accent);
  outline: none;
}
