/* 
* aiclothingremoverBR.love - Estilo principal
* Autor: Cascade
* Data: 2025-08-27
*/

:root {
    --primary: #8e44ad; /* Roxo como cor primária, diferente do site anterior */
    --secondary: #ff5722; /* Laranja como cor secundária */
    --accent: #3498db; /* Azul como cor de destaque */
    --dark: #2c3e50; /* Azul escuro para textos */
    --light: #f5f5f5; /* Cinza claro para fundos */
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.8rem;
    color: var(--primary);
}

h2 {
    font-size: 2rem;
    color: var(--dark);
    position: relative;
    padding-bottom: 15px;
}

h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 60px;
    background: var(--secondary);
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
}

section h2:after {
    left: 50%;
    transform: translateX(-50%);
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
.site-header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    width: 180px;
    height: 40px;
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav ul li a {
    color: var(--dark);
    font-weight: 500;
}

.main-nav ul li a:hover {
    color: var(--primary);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background-color: var(--dark);
    margin-bottom: 5px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.9) 0%, rgba(41, 128, 185, 0.9) 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 50%;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.hero-content h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.hero-content h2:after {
    background-color: var(--white);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

.hero-image {
    width: 45%;
    position: relative;
    z-index: 2;
}

.btn-hero {
    background-color: var(--secondary);
    color: var(--white);
    padding: 15px 30px;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* How it Works Section */
.how-it-works {
    padding: 80px 0;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step {
    flex-basis: calc(33.33% - 30px);
    text-align: center;
    padding: 30px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

.btn-secondary {
    background-color: var(--accent);
    color: var(--white);
    padding: 12px 25px;
    border-radius: var(--radius);
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    text-align: center;
    padding: 30px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.feature h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

/* Get Started Section */
.get-started {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.9) 0%, rgba(142, 68, 173, 0.9) 100%);
    color: var(--white);
    text-align: center;
}

.get-started h2 {
    color: var(--white);
}

.get-started h2:after {
    background-color: var(--white);
}

.get-started p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--radius);
    max-width: 600px;
    margin: 0 auto;
}

.btn-large {
    background-color: var(--white);
    color: var(--primary);
    padding: 15px 40px;
    border-radius: var(--radius);
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.btn-large:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.site-footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex-basis: 30%;
    margin-bottom: 30px;
}

.footer-logo p {
    margin-top: 15px;
    font-weight: 600;
    color: var(--white);
}

.footer-links, .footer-features {
    flex-basis: 30%;
    margin-bottom: 30px;
}

.footer-links h4, .footer-features h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li, .footer-features ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light);
}

.footer-links a:hover {
    color: var(--secondary);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content, .hero-image {
        width: 100%;
        text-align: center;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .step {
        flex-basis: calc(50% - 20px);
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .main-nav.active {
        max-height: 300px;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    .main-nav ul li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    .step {
        flex-basis: 100%;
    }
    
    .footer-logo, .footer-links, .footer-features {
        flex-basis: 100%;
        text-align: center;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .about-card, .feature {
        padding: 20px;
    }
    
    .cta-box {
        padding: 20px;
    }
    
    .btn-large {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
