:root {
    --boticario-green: #00a651;
    --boticario-dark-green: #008542;
    --boticario-light-green: #e6f4ea;
    --boticario-text: #333;
    --white: #ffffff;
    --gray: #f4f4f4;
    --border: #ddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--gray);
    color: var(--boticario-text);
    line-height: 1.6;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    min-height: 100vh;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 20px;
}

header {
    text-align: center;
    padding: 20px 0;
}

.logo {
    max-width: 150px;
}

h1, h2 {
    color: var(--boticario-green);
    text-align: center;
    margin-bottom: 20px;
}

/* ===== HERO SECTION STYLES ===== */
.hero-section {
    margin: 0 -20px 30px -20px;
    padding: 0;
    background: var(--white);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    margin-bottom: 0;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.hero-content {
    padding: 30px 20px 20px 20px;
    text-align: center;
}

.hero-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--boticario-green);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--boticario-dark-green);
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}

.hero-description {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

/* ===== BUTTON STYLES ===== */
.btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--boticario-green);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: var(--boticario-dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background-color: var(--boticario-green);
}

/* ===== FORM STYLES ===== */
.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 16px;
}

.hidden {
    display: none;
}

/* ===== TESTIMONIAL STYLES ===== */
.testimonial-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--boticario-light-green) 100%);
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    animation: fadeIn 0.5s ease-in-out;
    box-shadow: 0 2px 8px rgba(0, 166, 81, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.15);
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--boticario-green);
    flex-shrink: 0;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 8px;
    font-style: italic;
}

.testimonial-content span {
    font-weight: 600;
    font-size: 13px;
    color: var(--boticario-green);
    display: block;
}

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

/* ===== LOADER STYLES ===== */
.loader-container {
    text-align: center;
    padding: 50px 20px;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid var(--boticario-green);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.success-icon {
    color: var(--boticario-green);
    font-size: 80px;
    text-align: center;
    margin-bottom: 20px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .hero-section {
        margin: 0 -15px 25px -15px;
    }

    .hero-content {
        padding: 25px 15px 15px 15px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-description {
        font-size: 14px;
    }

    .btn {
        padding: 14px;
        font-size: 16px;
        margin-top: 18px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .btn {
        padding: 15px;
        font-size: 17px;
    }
}
