/* styles.css - Estilos da Landing Page Medicina Univassouras */

/* 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;
    line-height: 1.6;
    color: #585458;
    background-color: #ffffff;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #6d1d20;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header img {
    height: 30px;
}

.header-btn {
    padding: 10px 30px;
    background-color: #f58220;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.header-btn:hover {
    background-color: #e57119;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: url("assets/img/hero.jpg") center/cover;
    color: #ffffff;
    padding: 400px 0 400px 0;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 800;
}

.hero .tagline {
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-top: 20px;
    font-style: italic;
    line-height: 1.6;
}

/* Section */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    color: #6d1d20;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.section-subtitle {
    font-size: 22px;
    color: #f58220;
    text-align: center;
    margin-bottom: 50px;
}

.highlight-text {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #585458;
}

/* White Section */
.white-section {
    background-color: #ffffff;
}

/* Gray Section */
.gray-section {
    background-color: #f8f9fa;
}

/* Dark Section */
.dark-section {
    background: linear-gradient(135deg, #6d1d20 0%, #8b2429 100%);
    color: #ffffff;
    padding: 100px 0;
}

.dark-section h2 {
    color: #ffffff;
    text-align: center;
    font-size: 42px;
    margin-bottom: 30px;
}

.dark-section p {
    text-align: center;
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Features Overlay Box */
.features-overlay {
    position: relative;
    margin-top: -50px;
    z-index: 100;
    padding: 0 20px;
}

.features-box {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}

.features-box h2 {
    font-size: 36px;
    color: #6d1d20;
    margin-bottom: 50px;
    text-align: center;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon img {
    width: 80px;
    height: 80px;
}

.feature-content h3 {
    color: #6d1d20;
    margin-bottom: 10px;
    font-size: 20px;
}

.feature-content p {
    color: #585458;
    line-height: 1.6;
}

.feature-highlight {
    background-color: #fff9f0;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #f58220;
    margin-top: 20px;
}

/* Form Section */
.form-section {
    background-color: #f58220;
    color: #ffffff;
    padding: 150px 0 80px 0;
    margin-top: -100px;
    position: relative;
    z-index: 50;
}

.form-section h2 {
    text-align: center;
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 10px;
}

.form-section .section-description {
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 40px;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.form-container form{
    max-width: 600px;
    margin: 0 auto;
    
}


.form-container h3 {
    color: #6d1d20;
    text-align: center;
    margin-bottom: 10px;
    font-size: 28px;
}

.form-container p {
    color: #585458;
    text-align: center;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    color: #6d1d20;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #f58220;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    width: 100%;
    padding: 15px 30px;
    background-color: #6d1d20;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.form-submit:hover {
    background-color: #8b2429;
    transform: translateY(-2px);
}

.form-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.alert-error {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.alert-success {
    background-color: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

/* Checkbox de Consentimento */
.form-checkbox {
    margin-top: 25px;
    margin-bottom: 10px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    min-width: 20px;
    height: 20px;
    margin-right: 12px;
    margin-top: 2px;
    cursor: pointer;
    border: 2px solid #e0e0e0;
}

.checkbox-container input[type="checkbox"]:checked {
    accent-color: #6d1d20;
}

.checkbox-text {
    font-size: 14px;
    line-height: 1.5;
    color: #585458;
}

.checkbox-text a {
    color: #6d1d20;
    text-decoration: underline;
    font-weight: 500;
}

.checkbox-text a:hover {
    color: #8b2429;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #f58220;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #e57119;
    transform: translateY(-2px);
}

.btn-white {
    background-color: #ffffff;
    color: #6d1d20;
}

.btn-white:hover {
    background-color: #f5f5f5;
}

/* Footer */
.footer {
    background-color: #6d1d20;
    color: #ffffff;
    padding: 50px 0;
    text-align: center;
}

 a {
    color: white;
  }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero {
        padding: 150px 0 80px 0;
    }
    
    .features-overlay {
        margin-top: -30px;
    }
    
    .features-box {
        padding: 40px 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}