/* Base Styles */
:root {
    --main-bg: #eae0d5;
    --accent-dark: #3e1f47;
    --accent-bright: #ffba08;
    --block-bg: #fdfcdc;
    --text-color: #1e1e1e;
    --icon-color: #b5838d;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --border-radius: 10px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--main-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent-bright));
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--accent-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-bright);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent-bright));
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow);
}

nav .btn {
    padding: 6px 18px;
    font-size: 0.9rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0,0,0,0.2);
    color: white;
}

.card {
    background-color: var(--block-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.text-center {
    text-align: center;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2:after {
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    animation: colorPulse 3s infinite alternate;
    line-height: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

@keyframes colorPulse {
    0% { color: var(--accent-dark); }
    100% { color: var(--accent-bright); }
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    height: 100%;
}

nav ul li {
    margin-left: 25px;
    height: 100%;
    display: flex;
    align-items: center;
}

nav ul li a {
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent-bright));
    transition: var(--transition);
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-dark);
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(253, 252, 220, 0.6), rgba(234, 224, 213, 0.9));
    margin-top: 0;
    padding-top: 80px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-image {
    flex: 1;
    max-width: 450px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hero-image:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.hero-content h1 {
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.5s;
}

.hero-content p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.8s;
    max-width: 600px;
}

.hero-content .btn {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1s;
}

/* About Section */
#sobre {
    background-color: var(--block-bg);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text, .about-img {
    flex: 1;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-item i {
    font-size: 3rem;
    color: var(--icon-color);
    margin-bottom: 20px;
}

.service-item h3 {
    margin-bottom: 15px;
}

/* Why Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.why-us-item {
    padding: 20px;
    border-radius: var(--border-radius);
    background: white;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-us-item i {
    font-size: 2rem;
    color: var(--icon-color);
}

/* Testimonials Section */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: white;
    position: relative;
    padding-top: 40px;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: -40px;
    left: 30px;
    border: 5px solid var(--main-bg);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-name {
    font-weight: 700;
    color: var(--accent-dark);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    background: white;
    padding: 20px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.faq-answer {
    background: var(--block-bg);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-question:after {
    content: '-';
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Contact Form */
.form-section {
    background: var(--block-bg);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.checkbox-group input {
    width: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--icon-color);
}

/* Footer */
footer {
    background-color: var(--accent-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-col h3 {
    color: var(--accent-bright);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-bright);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
}

.footer-links a:hover {
    color: var(--accent-bright);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 20px;
    max-width: 400px;
    z-index: 9999;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.5s forwards;
}

.cookie-text {
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Policy Pages */
.policy-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    margin: 100px auto;
    max-width: 900px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent-bright);
}

.policy-logo {
    margin-bottom: 30px;
}

.policy-content h3 {
    color: var(--accent-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content p, .policy-content ul {
    margin-bottom: 15px;
}

.policy-content ul {
    padding-left: 20px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100px);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* Thank You Page */
.thank-you-container {
    text-align: center;
    padding: 60px 40px !important;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 100px auto;
    border-left: 5px solid var(--accent-bright) !important;
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--accent-bright);
    margin-bottom: 30px;
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content, .contact-container {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    #hero {
        text-align: center;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        align-items: center;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    .services-grid, .testimonial-grid, .why-us-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .card {
        padding: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .policy-container {
        padding: 20px;
        margin: 80px 15px;
    }
} 