/* 
   Main CSS Styles
   Color Palette:
   - Emerald: #2ECC71
   - Fuchsia: #F012BE
   - Platinum: #E5E4E2
   - Indigo: #4B0082
   - Coal Gray: #2C3E50
   - White: #FFFFFF
   - Dark Gray: #333333
*/

/* === RESET & GENERAL STYLES === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Adiciona padding para ancoragem correta com navbar fixa */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #FFFFFF;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.75em;
    line-height: 1.3;
    color: #2C3E50;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4B0082, #F012BE);
    margin: 0.5rem auto;
    border-radius: 2px;
}

a {
    color: #4B0082;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #F012BE;
}

section {
    padding: 80px 0;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 15px 0;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content p {
    margin: 0;
    padding-right: 20px;
}

.cookie-content a {
    color: #2ECC71;
    text-decoration: underline;
}

.cookie-button {
    background-color: #F012BE;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cookie-button:hover {
    background-color: #4B0082;
}

/* === HEADER & NAVIGATION === */
.site-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    height: auto;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: block;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4B0082, #F012BE);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: #4B0082;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav-cta:hover {
    background-color: #F012BE;
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none !important;
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.8), rgba(240, 18, 190, 0.7)), url('../img/ZyYDdk.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 0;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    animation: fadeIn 0.8s ease-out forwards;
}

.hero .accent {
    color: #2ECC71;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.cta-button {
    display: inline-block;
    background-color: #2ECC71;
    color: white;
    padding: 15px 30px;
    border-radius: 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.6s forwards;
}

.cta-button:hover {
    background-color: #F012BE;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

/* === ABOUT SECTION === */
.about {
    background-color: #f9f9f9;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

/* === VALUES SECTION === */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: white;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    color: #4B0082;
    margin-bottom: 15px;
}

/* === SERVICES SECTION === */
.services {
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.service-card h3, .service-card p {
    padding: 0 20px;
}

.service-card h3 {
    margin-top: 20px;
    color: #4B0082;
}

.service-price {
    font-weight: bold;
    color: #F012BE;
    padding: 0 20px;
    margin: 15px 0;
    font-size: 1.2rem;
}

.service-button {
    display: block;
    background-color: #2ECC71;
    color: white;
    text-align: center;
    padding: 12px 0;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.service-button:hover {
    background-color: #4B0082;
    color: white;
}

/* === PROCESS SECTION === */
.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 220px;
    padding: 0 20px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #4B0082, #F012BE);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #4B0082;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 15px;
    position: relative;
    z-index: 2;
}

/* === TESTIMONIALS SECTION === */
.testimonials {
    background-color: #f9f9f9;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 220px;
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    transition: opacity 0.5s ease;
}

.testimonial-text {
    font-style: italic;
    position: relative;
    margin-bottom: 20px;
}

.testimonial-text::before, .testimonial-text::after {
    content: '"';
    color: #F012BE;
    font-size: 2rem;
    font-weight: bold;
}

.client-name {
    text-align: right;
    font-weight: bold;
    color: #4B0082;
}

/* === CONTACT FORM === */
.contact {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.05), rgba(240, 18, 190, 0.05));
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E5E4E2;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus {
    outline: none;
    border-color: #4B0082;
    box-shadow: 0 0 0 3px rgba(75, 0, 130, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.submit-button {
    background-color: #4B0082;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.submit-button:hover {
    background-color: #F012BE;
    transform: translateY(-3px);
}

/* === FOOTER === */
.site-footer {
    background-color: #2C3E50;
    color: #E5E4E2;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-info p {
    line-height: 1.8;
}

.footer-contact h4, .footer-links h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact a {
    color: #2ECC71;
}

.footer-contact a:hover {
    color: #F012BE;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #E5E4E2;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #F012BE;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(229, 228, 226, 0.2);
}

/* === POLICY PAGES === */
.policy-page {
    padding: 120px 0 80px; /* Aumentado o padding-top para evitar sobreposição com o cabeçalho */
}

.policy-page h1 {
    color: #4B0082;
    margin-bottom: 30px;
    text-align: center;
}

.policy-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.policy-content h2 {
    color: #4B0082;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
}

.policy-content h2::after {
    margin-left: 0;
    width: 50px;
}

.policy-content p, .policy-content li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.policy-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.updated-date {
    font-style: italic;
    color: #777;
    margin-top: 40px;
}

.back-button {
    display: inline-block;
    background-color: #4B0082;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 0 auto;
    text-align: center;
}

.back-button:hover {
    background-color: #F012BE;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table th, .cookies-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.cookies-table th {
    background-color: #f2f2f2;
    color: #4B0082;
}

.cookies-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* === THANK YOU PAGE === */
.thank-you {
    padding: 120px 0; /* Aumentado o padding-top para evitar sobreposição com o cabeçalho */
    text-align: center;
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.05), rgba(240, 18, 190, 0.05));
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thank-you h1 {
    color: #4B0082;
    margin-bottom: 30px;
}

.thank-you p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Success checkmark animation */
.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #2ECC71;
}

.check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}

.check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
}

.check-icon::before, .check-icon::after {
    content: '';
    height: 100px;
    position: absolute;
    background: white;
    transform: rotate(-45deg);
}

.icon-line {
    height: 5px;
    background-color: #2ECC71;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 46px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}

/* === RESPONSIVE STYLES === */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .policy-page {
        padding: 100px 0 60px; /* Ajustado para telas menores */
    }
    
    /* Mobile navigation */
    .menu-icon {
        display: block;
        cursor: pointer;
        position: relative;
        z-index: 101;
    }
    
    .menu-icon span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #2C3E50;
        margin: 5px 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .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;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 100;
    }
    
    .menu-toggle:checked ~ .nav-menu {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-bottom: 15px;
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 12px 25px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form, .policy-content {
        padding: 30px 20px;
    }
    
    .policy-page {
        padding: 90px 0 50px; /* Ajustado para telas muito pequenas */
    }
} 