/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c1810;
    background: linear-gradient(135deg, #f8f4f0 0%, #f0e6e0 100%);
}

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

/* Tipografia */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #8b4513;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #b8860b, #daa520);
}

/* Header e Navegação */
.header {
    background: rgba(139, 69, 19, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(139, 69, 19, 0.3);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h1 {
    color: #f8f4f0;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #f8f4f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #f8f4f0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 50%, #cd853f 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="%23d4af37" opacity="0.3"/><circle cx="80" cy="40" r="0.5" fill="%23d4af37" opacity="0.5"/><circle cx="40" cy="80" r="1.5" fill="%23d4af37" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    color: #f8f4f0;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #d4af37, #b8860b);
    color: #2c1810;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #f8f4f0;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #2c1810;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

.mystical-circle {
    width: 300px;
    height: 300px;
    border: 3px solid #d4af37;
    border-radius: 50%;
    position: relative;
    animation: rotate 20s linear infinite;
    background: rgba(212, 175, 55, 0.1);
}

.mystical-circle i {
    position: absolute;
    font-size: 2rem;
    color: #d4af37;
}

.mystical-circle i:nth-child(1) {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.mystical-circle i:nth-child(2) {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.mystical-circle i:nth-child(3) {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Sobre Section */
.sobre {
    padding: 5rem 0;
    background: #f8f4f0;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5d4037;
    margin-bottom: 1.5rem;
}

.sobre-features {
    display: grid;
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.feature p {
    color: #5d4037;
}

/* Como Funciona Section */
.como-funciona {
    padding: 5rem 0;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: #f8f4f0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c1810;
    margin: 0 auto 1rem;
}

.step h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.step p {
    opacity: 0.9;
}

/* Planos Section */
.planos {
    padding: 5rem 0;
    background: #f8f4f0;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plano-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.plano-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
}

.plano-card.featured {
    border-color: #d4af37;
    transform: scale(1.05);
}

.plano-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    color: #2c1810;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.plano-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0e6e0;
}

.plano-header h3 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.plano-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
}

.period {
    color: #5d4037;
    font-size: 0.9rem;
}

.plano-description {
    margin-bottom: 2rem;
}

.plano-description p {
    color: #5d4037;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.plano-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.plano-benefits li {
    color: #5d4037;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.plano-benefits li::before {
    content: '✨';
    position: absolute;
    left: -1rem;
}

.plano-type {
    text-align: center;
    background: #8b4513;
    color: #f8f4f0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 100%;
}

/* Para Quem Section */
.para-quem {
    padding: 5rem 0;
    background: linear-gradient(135deg, #a0522d 0%, #cd853f 100%);
    color: #f8f4f0;
}

.quem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quem-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.quem-item i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.quem-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Edição Especial Section */
.edicao-especial {
    padding: 5rem 0;
    background: #f8f4f0;
}

.edicao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.edicao-text h3 {
    color: #8b4513;
    margin: 1.5rem 0 1rem;
}

.edicao-items, .edicao-benefits {
    list-style: none;
    margin: 1rem 0;
}

.edicao-items li, .edicao-benefits li {
    color: #5d4037;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
}

.edicao-items li::before {
    content: '💕';
    position: absolute;
    left: -1rem;
}

.edicao-benefits li::before {
    content: '💖';
    position: absolute;
    left: -1rem;
}

.love-circle {
    width: 250px;
    height: 250px;
    border: 3px solid #ff69b4;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
    background: rgba(255, 105, 180, 0.1);
    margin: 0 auto;
}

.love-circle i {
    position: absolute;
    font-size: 2rem;
    color: #ff69b4;
}

.love-circle i:nth-child(1) {
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.love-circle i:nth-child(2) {
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.love-circle i:nth-child(3) {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Contato Section */
.contato {
    padding: 5rem 0;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: #f8f4f0;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.contato-item i {
    font-size: 2rem;
    color: #d4af37;
    min-width: 40px;
}

.contato-item h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.contato-item p {
    opacity: 0.9;
}

.contato-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #2c1810;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

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

/* Footer */
.footer {
    background: #2c1810;
    color: #f8f4f0;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-social h4 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #f8f4f0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #d4af37;
    color: #2c1810;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: #b8860b;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #5d4037;
    color: #a0522d;
}

/* Responsividade */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .sobre-content,
    .edicao-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .planos-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .quem-grid {
        grid-template-columns: 1fr;
    }
    
    .mystical-circle,
    .love-circle {
        width: 200px;
        height: 200px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .plano-card {
        padding: 1.5rem;
    }
}
