/*
Theme Name: Landing Page Equipe Goiânia
Theme URI: https://seusite.com
Author: Seu Nome
Author URI: https://seusite.com
Description: Tema para landing page de captação de corretores
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: landing-equipe
*/

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
  color: #1a2332;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

/* Grid Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Photo Section */
.photo-section {
  display: flex;
  justify-content: center;
  position: relative;
}

.photo-wrapper {
  position: relative;
  max-width: 28rem;
  width: 100%;
}

.photo-blur {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e3a5f, #2d4a7c);
  border-radius: 1rem;
  filter: blur(2rem);
  opacity: 0.2;
  transform: scale(0.95);
}

.manager-photo {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 24px -4px rgba(30, 58, 95, 0.1);
  object-fit: cover;
  object-position: 50% 20%;
}

/* Content Section */
.content-section {
  space-y: 2rem;
}

.hero-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1e3a5f;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-subtitle {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.125rem;
  }
}

/* Form Card */
.form-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 24px -4px rgba(30, 58, 95, 0.1);
  border: 1px solid #e5e7eb;
  margin-bottom: 2rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a2332;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  height: 3rem;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: all 0.2s;
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.1);
}

/* Radio Group */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-option {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.radio-option:hover {
  background-color: rgba(249, 115, 22, 0.05);
}

.radio-option input[type="radio"] {
  margin-right: 0.75rem;
  cursor: pointer;
}

.radio-option label {
  cursor: pointer;
  flex: 1;
  font-weight: normal;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  height: 3.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  background: linear-gradient(to right, #f97316, #fb923c);
  color: white;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: opacity 0.3s;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
  margin-top: 1rem;
}

.submit-btn:hover {
  opacity: 0.9;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Privacy Text */
.privacy-text {
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center;
  margin-top: 1rem;
}

/* Benefits Section */
.benefits-wrapper {
  margin-top: 2rem;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .benefits-list {
    font-size: 1rem;
  }
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkmark {
  color: #f97316;
}

.benefit-text {
  color: #1a2332;
  font-weight: 500;
}

.separator {
  color: #6b7280;
}

.note-text {
  font-size: 0.875rem;
  color: #6b7280;
  font-style: italic;
}

/* Thank You Page */
.thankyou-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

.thankyou-content {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.success-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #f97316, #fb923c);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: white;
}

.thankyou-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: #1e3a5f;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .thankyou-title {
    font-size: 3rem;
  }
}

.thankyou-text {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.75;
}

/* Hidden class */
.hidden {
  display: none;
}

/* Error Messages */
.error-message {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}


/* ==== Mobile photo sizing fix (2025-10-13) ==== */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr !important; }
  .photo-section { justify-content: center; margin-bottom: 24px; }
  .photo-wrapper { max-width: 260px; width: 70%; margin: 0 auto; }
  .photo-wrapper img { width: 100%; height: auto; object-fit: cover; }
}

/* Smaller phones */
@media (max-width: 480px) {
  .photo-wrapper { max-width: 200px; width: 65%; }
  .photo-blur { transform: scale(0.82); opacity: 0.9; }
}


/* ==== Brand logo below form (2025-10-13) ==== */
.brand-below-form { margin-top: 20px; display: flex; justify-content: center; }
.brand-below-form img { max-width: 220px; width: 60%; height: auto; image-rendering: -webkit-optimize-contrast; }
@media (max-width: 768px) {
  .brand-below-form img { max-width: 150px; width: 70%; }
}
