/* Estilo global */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --background-color: #f9f9fa;
    --white: #ffffff;
    --light-gray: #ecf0f1;
    --dark-gray: #34495e;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition-ease: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Inter', 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    background-image: linear-gradient(to bottom, rgba(236, 240, 241, 0.5) 1px, transparent 1px), 
                      linear-gradient(to right, rgba(236, 240, 241, 0.5) 1px, transparent 1px);
    background-size: 35px 35px;
}

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

header {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-ease);
    animation: headerSlideDown 0.5s ease-out;
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    height: 80px;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.main-content {
    padding: 60px 0;
}

.hero-section {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #1a1a2e 100%);
    color: white;
    padding: 150px 0 180px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    animation: heroBackgroundZoom 20s ease-in-out infinite alternate;
}

@keyframes heroBackgroundZoom {
    0% { background-size: 100% 100%; }
    100% { background-size: 120% 120%; }
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 80%, var(--background-color));
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="1" d="M0,192L48,176C96,160,192,128,288,128C384,128,480,160,576,165.3C672,171,768,149,864,149.3C960,149,1056,171,1152,170.7C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center top;
    z-index: 2;
    animation: waveAnimation 10s linear infinite alternate;
}

@keyframes waveAnimation {
    0% { transform: translateX(-5%); }
    100% { transform: translateX(5%); }
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease-out;
}

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

.hero-content h1 {
    font-size: 62px;
    font-weight: 700;
    margin-bottom: 28px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    animation: titleReveal 1.5s ease;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        letter-spacing: 10px;
    }
    100% {
        opacity: 1;
        letter-spacing: 2px;
    }
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.9; }
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    animation: fadeIn 2.5s ease;
}

.info-section {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 50px;
    margin-bottom: 60px;
    transition: var(--transition-ease);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    z-index: 2;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.info-section:hover::before {
    transform: scaleX(1);
}

.info-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.info-section:hover {
    transform: translateY(-5px);
}

h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
    color: var(--dark-gray);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--light-gray), transparent);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: var(--border-radius);
    background-color: rgba(245, 247, 250, 0.7);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.info-item:hover {
    background-color: rgba(240, 242, 245, 1);
    border-left-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-gray);
    font-size: 17px;
}

.info-item p {
    font-size: 16px;
    color: var(--text-color);
}

.info-item p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.info-item p a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-section {
    margin-top: 60px;
    position: relative;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--light-gray);
    border-radius: 2px;
}

.map-container {
    width: 100%;
    height: 400px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin: 30px 0;
    box-shadow: var(--box-shadow);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 50px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--dark-gray);
    font-weight: 500;
}

footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    margin-top: 100px;
}

footer::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2334495e" fill-opacity="1" d="M0,96L80,117.3C160,139,320,181,480,181.3C640,181,800,139,960,138.7C1120,139,1280,181,1360,202.7L1440,224L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z"></path></svg>');
    background-size: cover;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-column h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-column p, .footer-column a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Página administrativa */
.admin-form {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.admin-header {
    text-align: center;
    margin-bottom: 40px;
}

.admin-header h1 {
    display: inline-block;
    margin-bottom: 15px;
}

.admin-header p {
    color: var(--dark-gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.1);
    background-color: white;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.form-row .form-group {
    flex: 1;
}

.btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition-ease);
    display: inline-block;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
    z-index: -1;
}

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

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--accent-color);
    position: relative;
    overflow: hidden;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-secondary:hover::after {
    width: 300%;
    height: 300%;
}

.btn-secondary:hover {
    background-color: var(--dark-gray);
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(52, 152, 219, 0.25);
}

.btn-accent {
    background-color: var(--accent-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark-gray);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 700;
}

.btn-accent:hover {
    background-color: #ff6545;
    box-shadow: 0 6px 15px rgba(255, 122, 89, 0.25);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

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

.feature-item {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(24, 119, 242, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.feature-item p {
    color: #666;
}

.testimonial-section {
    background-color: var(--white);
    padding: 80px 0;
    position: relative;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-author-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author-info p {
    color: #666;
    font-size: 14px;
}

.testimonial-quote {
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    color: var(--dark-gray);
    position: relative;
    padding: 0 30px;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: "\201C";
    font-size: 80px;
    line-height: 0;
    color: rgba(24, 119, 242, 0.15);
    position: absolute;
}

.testimonial-quote::before {
    top: 30px;
    left: -10px;
}

.testimonial-quote::after {
    content: "\201D";
    bottom: -30px;
    right: -10px;
}

/* Estilos específicos para loja de roupas */
.fashion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
    perspective: 1000px;
}

.fashion-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition-ease);
    height: 420px;
    transform-style: preserve-3d;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.fashion-card:nth-child(1) {
    animation-delay: 0.2s;
}

.fashion-card:nth-child(2) {
    animation-delay: 0.4s;
}

.fashion-card:nth-child(3) {
    animation-delay: 0.6s;
}

.fashion-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.15);
}

.fashion-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
    filter: brightness(0.95);
}

.fashion-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    padding: 30px 25px;
    color: white;
    transform: translateY(10px);
    transition: var(--transition-ease);
    opacity: 0.9;
}

.fashion-overlay h3 {
    font-size: 24px;
    margin-bottom: 12px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
}

.fashion-overlay h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.fashion-card:hover .fashion-overlay h3::after {
    width: 100px;
}

.fashion-card:hover .fashion-overlay {
    transform: translateY(0);
    opacity: 1;
}

.fashion-card:hover .fashion-image {
    transform: scale(1.1);
    filter: brightness(1);
}

.fashion-overlay p {
    font-size: 16px;
    opacity: 0.9;
    margin-top: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.collection-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.collection-title h2 {
    font-size: 36px;
    display: inline-block;
    padding: 0 30px;
    background: var(--white);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--dark-gray);
}

.collection-title h2::before,
.collection-title h2::after {
    content: "★";
    color: var(--secondary-color);
    font-size: 24px;
    margin: 0 15px;
    position: relative;
    top: -3px;
    opacity: 0.7;
}

.collection-title::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, var(--light-gray) 15%, var(--light-gray) 85%, transparent 100%);
    z-index: 1;
}

.brand-values {
    padding: 50px;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 70px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.brand-values::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.1;
    top: -100px;
    right: -100px;
    z-index: -1;
}

.brand-values::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-color) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.1;
    bottom: -75px;
    left: -75px;
    z-index: -1;
}

.brand-values h2 {
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    font-size: 32px;
}

.brand-values h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 70px;
    height: 3px;
    background-color: var(--secondary-color);
    transform: translateX(-50%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-item {
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-ease);
    position: relative;
    top: 0;
}

.value-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: transform 0.5s ease;
    display: inline-block;
}

.value-item:hover .value-icon {
    transform: rotateY(360deg);
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dark-gray);
}

.value-item p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Estilos da Política de Privacidade */
.privacy-policy {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 60px;
    box-shadow: var(--box-shadow);
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.privacy-policy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary-color), var(--accent-color));
}

.privacy-policy h2 {
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    color: var(--dark-gray);
}

.privacy-policy h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
}

.privacy-title {
    text-align: center;
    margin-bottom: 50px;
}

.privacy-policy .policy-section {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.privacy-policy .policy-section:nth-child(1) { animation-delay: 0.1s; }
.privacy-policy .policy-section:nth-child(2) { animation-delay: 0.2s; }
.privacy-policy .policy-section:nth-child(3) { animation-delay: 0.3s; }
.privacy-policy .policy-section:nth-child(4) { animation-delay: 0.4s; }
.privacy-policy .policy-section:nth-child(5) { animation-delay: 0.5s; }
.privacy-policy .policy-section:nth-child(6) { animation-delay: 0.6s; }
.privacy-policy .policy-section:nth-child(7) { animation-delay: 0.7s; }
.privacy-policy .policy-section:nth-child(8) { animation-delay: 0.8s; }

.privacy-title h2 {
    font-size: 32px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.privacy-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.privacy-title p {
    color: var(--dark-gray);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.privacy-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.privacy-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.privacy-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
    color: var(--dark-gray);
    font-style: italic;
}

@media screen and (max-width: 1024px) {
    .feature-grid, .fashion-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .fashion-card {
        height: 380px;
    }
}

@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    
    .hero-content p {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .info-section {
        padding: 30px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .testimonial-quote {
        font-size: 18px;
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .fashion-card {
        height: 350px;
    }
    
    .collection-title h2 {
        font-size: 28px;
    }
    
    .privacy-policy {
        padding: 30px;
    }
    
    .policy-section h3 {
        font-size: 20px;
    }
    
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 15px;
        gap: 15px;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        padding: 60px 0 100px;
    }
    
    .hero-content h1 {
        font-size: 26px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
        max-width: 250px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    .info-section {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .value-item {
        padding: 20px 15px;
    }
    
    .value-icon {
        font-size: 36px;
    }
    
    .stats-container {
        gap: 15px;
        margin: 30px 0;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .privacy-policy {
        padding: 25px 20px;
    }
    
    .testimonial-section {
        padding: 40px 0;
    }
    
    .fashion-card {
        height: 300px;
    }
    
    .fashion-overlay {
        padding: 20px 15px;
    }
    
    .fashion-overlay h3 {
        font-size: 20px;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
}

/* Botão voltar ao topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.back-to-top i {
    font-size: 20px;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--dark-gray);
    transform: translateY(-5px);
}

/* Melhorias adicionais para mobile */
@media screen and (max-width: 380px) {
    .hero-content h1 {
        font-size: 22px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .info-section {
        padding: 20px 15px;
    }
    
    .collection-title h2 {
        font-size: 22px;
        letter-spacing: 2px;
    }
    
    .collection-title h2::before,
    .collection-title h2::after {
        display: none;
    }
    
    .fashion-grid {
        gap: 25px;
    }
    
    .privacy-policy .policy-section h3 {
        font-size: 18px;
    }
    
    .testimonial-quote {
        font-size: 16px;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .value-item {
        padding: 15px;
    }
}
