/* Importação de fontes */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500;600&family=Cinzel+Decorative:wght@400;700&display=swap');

/* Variáveis CSS */
:root {
    --primary-color: #B45F49;
    --secondary-color: #EEC8C7;
    --accent-color: #f5e6e5;
    --text-dark: #333;
    --text-light: #666;
    --shadow-light: 0 4px 6px rgba(180, 95, 73, 0.1);
    --shadow-medium: 0 8px 25px rgba(180, 95, 73, 0.15);
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Navegação */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(33, 37, 41, 0.95) !important;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-family: 'Cinzel Decorative', cursive;
    font-weight: 700;
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* Remover bordes de foco dos links da navbar */
.navbar-nav .nav-link::after {
    display: none;
}

/* Estilo específico para botão de assinar */
.navbar-nav .btn-warning {
    color: white !important;
    font-weight: 600;
}

.navbar-nav .btn-warning:hover {
    color: white !important;
    background-color: #9a4d3b !important;
    border-color: #9a4d3b !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 37, 41, 0.8) 0%, rgba(52, 58, 64, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

/* Nova seção visual elegante */
.hero-visual {
    position: relative;
    z-index: 2;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.elegant-showcase {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo principal no centro */
.hero-logo-container {
    position: relative;
    z-index: 20;
}

.logo-circle {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: logoFloat 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s linear infinite;
}

.logo-inner {
    text-align: center;
    z-index: 2;
    position: relative;
}

.brand-name {
    display: block;
    font-family: 'Cinzel Decorative', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: -0.5rem;
}

.brand-tagline {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--secondary-color);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

/* Sistema orbital de joias */
.orbital-jewelry {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
}

.jewelry-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-1 {
    width: 250px;
    height: 250px;
    top: 50px;
    left: 50px;
    animation-duration: 15s;
}

.orbit-2 {
    width: 300px;
    height: 300px;
    top: 25px;
    left: 25px;
    animation-duration: 20s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 350px;
    height: 350px;
    top: 0;
    left: 0;
    animation-duration: 25s;
}

.jewelry-piece {
    position: absolute;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 10px 25px rgba(180, 95, 73, 0.4);
    animation: counterRotate 20s linear infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.orbit-1 .jewelry-piece {
    top: -22.5px;
    left: calc(50% - 22.5px);
    animation-duration: 15s;
}

.orbit-2 .jewelry-piece {
    top: -22.5px;
    left: calc(50% - 22.5px);
    animation-duration: 20s;
    animation-direction: reverse;
}

.orbit-3 .jewelry-piece {
    top: -22.5px;
    left: calc(50% - 22.5px);
    animation-duration: 25s;
}

/* Cards de valor elegantes */
.value-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.value-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    animation: cardFloat 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.card-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), #c97064);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(180, 95, 73, 0.3);
}

.card-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: -15%;
    animation-delay: -2s;
}

.card-3 {
    bottom: 15%;
    left: -5%;
    animation-delay: -4s;
}

/* Decorações elegantes */
.decoration-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: ringPulse 8s ease-in-out infinite;
}

.ring-1 {
    width: 400px;
    height: 400px;
    top: -25px;
    left: -25px;
    animation-delay: 0s;
}

.ring-2 {
    width: 480px;
    height: 480px;
    top: -65px;
    left: -65px;
    animation-delay: -2.7s;
}

.ring-3 {
    width: 560px;
    height: 560px;
    top: -105px;
    left: -105px;
    animation-delay: -5.3s;
}

.floating-sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkleElegant 4s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.8;
}

.spark-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.spark-2 {
    top: 25%;
    right: 15%;
    animation-delay: -1s;
}

.spark-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: -2s;
}

.spark-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: -3s;
}

/* Textura de fundo sutil */
.background-texture {
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    animation: textureShift 20s ease-in-out infinite;
    z-index: -1;
}

/* Animações elegantes */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

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

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

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    33% {
        transform: translateY(-10px) translateX(5px);
    }
    66% {
        transform: translateY(-5px) translateX(-3px);
    }
}

@keyframes ringPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes sparkleElegant {
    0%, 100% {
        transform: translateY(0px) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.3) rotate(180deg);
        opacity: 1;
    }
}

@keyframes textureShift {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(1deg) scale(1.02);
    }
}

/* Responsividade melhorada */
@media (max-width: 768px) {
    .hero-visual {
        height: 350px;
        padding: 1rem;
    }
    
    .elegant-showcase {
        max-width: 320px;
        height: 320px;
    }
    
    .logo-circle {
        width: 140px;
        height: 140px;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .brand-tagline {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .orbital-jewelry {
        width: 280px;
        height: 280px;
    }
    
    .orbit-1 {
        width: 200px;
        height: 200px;
        top: 40px;
        left: 40px;
    }
    
    .orbit-2 {
        width: 240px;
        height: 240px;
        top: 20px;
        left: 20px;
    }
    
    .orbit-3 {
        width: 280px;
        height: 280px;
        top: 0;
        left: 0;
    }
    
    .jewelry-piece {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .orbit-1 .jewelry-piece,
    .orbit-2 .jewelry-piece,
    .orbit-3 .jewelry-piece {
        top: -17.5px;
        left: calc(50% - 17.5px);
    }
    
    .value-card {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .card-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .card-1 {
        top: 10%;
        left: -5%;
    }
    
    .card-2 {
        top: 65%;
        right: -10%;
    }
    
    .card-3 {
        bottom: 10%;
        left: 0%;
    }
    
    .floating-sparkle {
        font-size: 1.2rem;
    }
    
    .decoration-ring {
        display: none; /* Ocultar anéis decorativos no mobile para performance */
    }
}

@media (max-width: 480px) {
    .hero-visual {
        height: 300px;
    }
    
    .elegant-showcase {
        max-width: 280px;
        height: 280px;
    }
    
    .logo-circle {
        width: 120px;
        height: 120px;
    }
    
    .brand-name {
        font-size: 1.7rem;
    }
    
    .brand-tagline {
        font-size: 0.75rem;
    }
    
    .orbital-jewelry {
        width: 240px;
        height: 240px;
    }
    
    .orbit-1 {
        width: 160px;
        height: 160px;
        top: 40px;
        left: 40px;
    }
    
    .orbit-2 {
        width: 200px;
        height: 200px;
        top: 20px;
        left: 20px;
    }
    
    .orbit-3 {
        width: 240px;
        height: 240px;
        top: 0;
        left: 0;
    }
    
    .value-card {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Botão Ver Planos sempre branco */
.hero-buttons .btn-warning {
    color: white !important;
}

.hero-buttons .btn-warning:hover {
    color: white !important;
}

/* Botão Fale Conosco com hover rosa */
.hero-buttons .btn-outline-light:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--accent-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--secondary-color);
}

.feature-icon {
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    color: var(--primary-color) !important;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(33, 37, 41, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    transform: translateY(20px);
    transition: var(--transition);
}

.product-card:hover .product-overlay .btn {
    transform: translateY(0);
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid #f8f9fa;
    position: relative;
    overflow: hidden;
}

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

.pricing-card-featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    transform: rotate(45deg);
    z-index: 10;
    width: 120px;
}

.pricing-badge .badge {
    padding: 8px 45px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--primary-color) !important;
    color: white !important;
    width: 100%;
    text-align: center;
}

.pricing-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f8f9fa 100%);
    border-bottom: 1px solid var(--secondary-color);
}

.pricing-price {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-price .currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3rem;
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-light);
}

/* Seletor de período */
.pricing-period-selector {
    margin-bottom: 1rem;
}

.pricing-period-selector .btn-group {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.pricing-period-selector .btn {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--secondary-color);
    background: white;
    color: var(--primary-color);
    transition: var(--transition);
}

.pricing-period-selector .btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.pricing-period-selector .btn-check:checked + .btn {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pricing-period-selector .btn-check:checked + .btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Seletor Global de Período */
.global-period-selector {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.global-period-selector .btn-group {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.global-period-selector .btn {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--secondary-color);
    background: white;
    color: var(--primary-color);
    transition: var(--transition);
}

.global-period-selector .btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.global-period-selector .btn-check:checked + .btn {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color)!important;
}

.global-period-selector .btn-check:checked + .btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color)!important;
}

/* Preços com desconto */
.original-price {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

/* Responsividade para seletor global */
@media (max-width: 768px) {
    .global-period-selector .btn {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Indicador de economia */
.pricing-savings {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Seção de informações dos planos */
.pricing-info {
    border: 1px solid var(--secondary-color);
    box-shadow: var(--shadow-light);
}

.pricing-info i {
    display: block;
    margin-bottom: 0.5rem;
}

.pricing-info p {
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.pricing-info small {
    line-height: 1.4;
}

.pricing-features ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--accent-color);
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.pricing-footer {
    background: var(--accent-color);
    border-top: 1px solid var(--secondary-color);
}

.coming-soon-btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: not-allowed;
    opacity: 0.8;
}

.coming-soon-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Animação para os pricing cards */
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Timeline Styles */
.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Desktop: Layout horizontal */
@media (min-width: 769px) {
    .timeline-container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .timeline-container::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        border-radius: 2px;
        z-index: 1;
    }
    
    .timeline-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 0;
        position: relative;
    }
    
    .timeline-marker {
        position: relative;
        z-index: 10;
        margin-bottom: 1.5rem;
    }
    
    .timeline-content {
        max-width: 100%;
        margin: 0;
        text-align: center;
    }
}

/* Mobile: Layout vertical */
@media (max-width: 768px) {
    .timeline-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 30px;
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
        border-radius: 2px;
    }
    
    .timeline-item {
        position: relative;
        margin-bottom: 3rem;
        display: flex;
        align-items: center;
        flex-direction: row;
    }
    
    .timeline-marker {
        position: absolute;
        left: 30px;
        transform: translateX(-50%);
        z-index: 10;
    }
    
    .timeline-content {
        flex: 1;
        margin-left: 80px;
        max-width: none;
    }
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    border: 4px solid white;
    box-shadow: var(--shadow-medium);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.timeline-icon i {
    font-size: 2rem;
    color: white;
}

.timeline-content:hover .timeline-icon {
    transform: scale(1.1);
}

.timeline-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.timeline-subtitle {
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0;
}

/* Mobile específico */
@media (max-width: 768px) {
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
    }
    
    .timeline-icon i {
        font-size: 1.5rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
}

/* Timeline em background escuro */
.bg-dark .timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.bg-dark .timeline-content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.bg-dark .timeline-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.bg-dark .timeline-number {
    border-color: rgba(255, 255, 255, 0.3);
}

/* FAQ Accordion Styles */
.accordion-item {
    border: 1px solid var(--secondary-color);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.accordion-button {
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.5rem;
    border: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(180, 95, 73, 0.25);
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B45F49'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B45F49'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 1.5rem;
    background: white;
    color: var(--text-dark);
    line-height: 1.6;
}

.accordion-body p {
    margin-bottom: 1rem;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

.accordion-body ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.accordion-body li {
    margin-bottom: 0.5rem;
}

.accordion-button i {
    font-size: 1.2rem;
}

/* Seções */
section {
    position: relative;
    overflow: hidden;
}

.bg-light {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f8f9fa 100%) !important;
}

/* Social Links */
.social-links a {
    display: inline-block;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-top: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .hero-image img {
        transform: none;
        max-width: 300px;
    }
    
    .navbar-nav .nav-link {
        margin: 0;
        padding: 0.5rem 0;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
        margin-top: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .product-image {
        height: 200px;
    }
}

/* Estados de foco para acessibilidade */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Melhorias no contraste */
.text-muted {
    color: var(--text-light) !important;
}

/* Efeitos hover para botões */
.btn-warning {
    background-color: var(--primary-color)!important;
    border-color: var(--primary-color)!important;
    color: white !important;
}

.btn-warning:hover {
    background-color: #9a4d3b !important;
    border-color: #9a4d3b!important;
    color: white !important;
}

.btn-outline-warning {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/* Garantir que ícones em botões warning sejam sempre brancos */
.btn-warning i {
    color: white !important;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Loading states e micro-interações */
.btn {
    position: relative;
    overflow: hidden;
}

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

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

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9a4d3b;
}

/* Elementos com logo - aplicar fonte Cinzel */
.navbar-brand,
footer h5,
.hero-content h1 .text-warning {
    font-family: 'Cinzel Decorative', cursive !important;
}

/* Cores de texto personalizadas */
.text-warning {
    color: var(--primary-color) !important;
}

.bg-warning {
    background-color: var(--primary-color) !important;
}

/* Ícones com nova cor */
.fa-gem,
.fa-medal,
.fa-shipping-fast,
.fa-gift,
.fa-star,
.fa-crown {
    color: var(--primary-color) !important;
}

/* Logo styling */
.navbar-brand img,
footer h5 img {
    filter: none;
    transition: var(--transition);
}

.navbar-brand:hover img {
    transform: scale(1.1);
}

/* Ajustes para seção CTA */
.bg-warning {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f0d5d4 100%) !important;
}

.bg-warning .btn-dark {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.bg-warning .btn-dark:hover {
    background-color: #9a4d3b !important;
    border-color: #9a4d3b !important;
    transform: translateY(-2px);
}

/* Estilos para Modais de Lead */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.modal-header.bg-warning {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f0d5d4 100%) !important;
    border-bottom: none;
    padding: 1.5rem;
}

.modal-header.bg-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    border-bottom: none;
    padding: 1.5rem;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
}

.modal-body {
    padding: 2rem;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    transition: var(--transition);
    font-size: 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(180, 95, 73, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-warning.modal-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c96951 100%);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-warning.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 95, 73, 0.3);
}

.social-share .btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-share .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Animação de entrada do modal */
.modal.fade .modal-dialog {
    transform: scale(0.8) translateY(-50px);
    transition: all 0.3s ease;
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* Responsividade para modais */
@media (max-width: 768px) {
    .modal-lg {
        max-width: 95% !important;
        margin: 0.5rem auto;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
    
    .form-control, .form-select {
        padding: 0.6rem;
    }
    
    /* Em mobile, campos ficam em coluna única */
    .modal .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .modal-lg {
        max-width: 700px;
    }
}
