/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #cbbaa6 0%, #253141 100%);
    color: white;
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(37, 49, 65, 0.2);
}

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

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

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: #cbbaa6;
    color: #253141;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #253141;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 49, 65, 0.4);
}

.mobile-menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 5px;
}

.mobile-menu-toggle:hover {
    color: #cbbaa6;
    background: rgba(255,255,255,0.1);
}

.mobile-menu-toggle i {
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active i {
    transform: rotate(90deg);
}

/* Menu Mobile */
.nav {
    transition: all 0.3s ease;
}

.nav.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #cbbaa6 0%, #253141 100%);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 999;
    animation: slideDown 0.3s ease;
}

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

.nav.active .nav-link {
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.nav.active .nav-link:last-child {
    border-bottom: none;
}

.nav.active .whatsapp-btn {
    margin-top: 1rem;
    justify-content: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #cbbaa6 0%, #253141 100%);
    color: white;
    padding: 140px 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

.hero-logo {
    margin-bottom: 2rem;
}

/* Carrossel Hero */
.hero-carousel {
    position: relative;
    width: 80vw;
    max-width: 800px;
    height: 40vw;
    max-height: 400px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border: 6px solid rgba(255,255,255,0.3);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

/* Navegação do Carrossel */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.carousel-prev,
.carousel-next {
    background: rgba(255,255,255,0.8);
    border: none;
    color: #253141;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(255,255,255,1);
    transform: scale(1.1);
}

/* Dots do Carrossel */
.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: rgba(255,255,255,1);
    transform: scale(1.2);
}

.hero-content {
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    background: #cbbaa6;
    color: #253141;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-btn:hover {
    background: #253141;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 49, 65, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-modelo-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 4px solid rgba(255,255,255,0.2);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #cbbaa6 0%, #253141 100%);
    border-radius: 2px;
}

/* Produtos Section */
.produtos {
    padding: 80px 0;
    background: white;
}

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

.produto-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.produto-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #f8f9fa 0%, #cbbaa6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.produto-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.produto-card:hover .produto-img {
    transform: scale(1.05);
}

.image-placeholder {
    font-size: 4rem;
    color: #253141;
    opacity: 0.7;
}

.produto-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #253141;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.produto-info {
    padding: 1.5rem;
}

.produto-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.produto-desc {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.produto-preco {
    margin-bottom: 1rem;
}

.preco-original {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.preco-promocao {
    font-size: 1.3rem;
    font-weight: 700;
    color: #253141;
}

.tamanhos {
    margin-bottom: 1.5rem;
}

.tamanho-label {
    font-size: 0.9rem;
    color: #666;
    margin-right: 0.5rem;
}

.tamanho-options {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tamanho {
    background: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
    border: 1px solid #e9ecef;
}

.btn-pedido {
    width: 100%;
    background: #cbbaa6;
    color: #253141;
    border: none;
    padding: 1rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-pedido:hover {
    background: #253141;
    color: white;
    transform: translateY(-2px);
}

/* Pedido Section */
.pedido-section {
    padding: 140px 0 80px;
    background: #f8f9fa;
}

.pedido-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pedido-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.pedido-header p {
    font-size: 1.1rem;
    color: #666;
}

.pedido-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pedido-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

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

.form-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h3 i {
    color: #cbbaa6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #cbbaa6;
    box-shadow: 0 0 0 3px rgba(203, 186, 166, 0.2);
}

/* Produtos no Formulário */
.produto-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.remove-produto {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-produto:hover {
    background: #c82333;
}

.add-produto {
    background: #28a745;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.add-produto:hover {
    background: #218838;
}

/* Pagamento */
.pagamento-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pagamento-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagamento-option:hover {
    border-color: #667eea;
}

.pagamento-option input[type="radio"] {
    display: none;
}

.pagamento-option input[type="radio"]:checked + .radio-custom {
    background: #cbbaa6;
    border-color: #cbbaa6;
}

.pagamento-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    margin-right: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.pagamento-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagamento-info i {
    font-size: 1.2rem;
    color: #cbbaa6;
}

.pagamento-info span {
    font-weight: 600;
    margin-right: 0.5rem;
}

.pagamento-info small {
    color: #666;
    font-size: 0.8rem;
}

/* Resumo do Pedido */
.resumo-pedido {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.resumo-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
}

.resumo-item.total {
    border-top: 2px solid #e9ecef;
    margin-top: 1rem;
    padding-top: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
}

.resumo-item.desconto {
    color: #cbbaa6;
}

/* Botões do Formulário */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-limpar {
    background: #6c757d;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.btn-limpar:hover {
    background: #5a6268;
}

.btn-enviar {
    background: #cbbaa6;
    color: #253141;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    flex: 2;
    justify-content: center;
    font-size: 1.1rem;
}

.btn-enviar:hover {
    background: #253141;
    color: white;
    transform: translateY(-2px);
}

/* Informações Adicionais */
.pedido-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card h4 i {
    color: #cbbaa6;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 0.3rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card li::before {
    content: '✓';
    color: #cbbaa6;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #253141;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.social-link {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #cbbaa6;
    transform: translateY(-2px);
}

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #cbbaa6;
    color: #253141;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(203, 186, 166, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    background: #253141;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 49, 65, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-carousel {
        width: 85vw;
        max-width: 600px;
        height: 42.5vw;
        max-height: 300px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-modelo-img {
        width: 250px;
        height: 250px;
        border-radius: 50%;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pedido-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .produto-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .pagamento-options {
        gap: 0.5rem;
    }
    
    .pagamento-option {
        padding: 0.8rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-carousel {
        width: 90vw;
        max-width: 400px;
        height: 45vw;
        max-height: 200px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .carousel-dots {
        bottom: 0.5rem;
    }
    
    .hero-modelo-img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pedido-form {
        padding: 1rem;
    }
    
    .info-card {
        padding: 1rem;
    }
}

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

.produto-card {
    animation: fadeInUp 0.6s ease forwards;
}

.produto-card:nth-child(1) { animation-delay: 0.1s; }
.produto-card:nth-child(2) { animation-delay: 0.2s; }
.produto-card:nth-child(3) { animation-delay: 0.3s; }
.produto-card:nth-child(4) { animation-delay: 0.4s; }
.produto-card:nth-child(5) { animation-delay: 0.5s; }
.produto-card:nth-child(6) { animation-delay: 0.6s; }

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

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #cbbaa6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
