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

body {
    font-family: 'Inter', 'Arial', sans-serif;
    background-color: #1A1A2E;
    color: white;
    line-height: 1.6;
}

/* Navegação */
.navbar {
    background-color: #1A1A2E;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

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

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo-img {
    height: 60px;
    width: auto;
}

/* Carrinho */
.cart {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cart:hover {
    opacity: 0.8;
}

.cart-icon {
    width: 24px;
    height: 24px;
    color: white;
}

.cart-text {
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Conteúdo Principal */
.main-content {
    padding: 2rem 2rem;
    text-align: center;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Headline */
.headline {
    font-size: 1.875rem;
    /* text-3xl */
    font-weight: bold;
    margin-bottom: 1rem;
    /* mb-4 */
    background: linear-gradient(to right, #facc15, #4ade80, #60a5fa);
    /* from-yellow-400 via-green-400 to-blue-400 */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: float 3s ease-in-out infinite;
    letter-spacing: 1px;
}

/* Animação float */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Descrição */
.description {
    font-size: 1rem;
    color: white;
    margin-bottom: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Slogan */
.slogan {
    font-size: 1.2rem;
    color: #ffff00;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Botão de Doação */
.doacao-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #ff4444;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: rgba(255, 68, 68, 0.57) 0px 0px 20px 0px;
    margin-top: 1rem;
}

.doacao-btn:hover {
    background-color: #cc3333;
    transform: translateY(-2px);
    box-shadow: rgba(255, 68, 68, 0.8) 0px 5px 25px 0px;
}

.doacao-btn i {
    width: 20px;
    height: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo-img {
        height: 50px;
    }

    .headline {
        font-size: 1.5rem;
        /* text-2xl equivalente */
    }

    .description {
        font-size: 1.1rem;
    }

    .slogan {
        font-size: 1.2rem;
    }

    .main-content {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 1.25rem;
        /* text-xl equivalente */
    }

    .description {
        font-size: 0.9rem;
    }

    .slogan {
        font-size: 1rem;
    }

    .cart-text {
        display: none;
    }
}

/* Seção do Produto */
.product-section {
    background-color: #1A1A2E;
    padding: 3rem 2rem;
    position: relative;
    margin: 2rem 0;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 25%,
            rgba(255, 255, 255, 0.02) 50%,
            rgba(255, 255, 255, 0.05) 75%,
            rgba(255, 255, 255, 0.1) 100%); */
    /* border-radius: 20px; */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: none;
    z-index: 1;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
    background: rgba(31, 41, 55, 0.8);
    /* bg-gray-800/80 */
    backdrop-filter: blur(12px);
    /* backdrop-blur-md */
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1rem;
    /* rounded-2xl */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* shadow-xl */
    border: 1px solid rgba(250, 204, 21, 0.2);
    /* border-yellow-400/20 */
    padding: 1.5rem;
    /* p-6 */
}

/* Título do Produto */
.product-title {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffff00;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Galeria de Produtos */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/produto1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    padding: 2rem;
    min-height: 650px;
    width: 100%;
}



.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.nav-arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.nav-arrow-left {
    left: 1rem;
}

.nav-arrow-right {
    right: 1rem;
}

.nav-arrow i {
    color: white;
    width: 20px;
    height: 20px;
}

/* Thumbnails */
.thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #ffff00;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Informações do Produto */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Preços */
.pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.original-price {
    font-size: 1.2rem;
    color: #888;
    text-decoration: line-through;
}

.current-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffff00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.installment {
    font-size: 1rem;
    color: white;
    margin: 0;
}

/* Seletor de Tamanho */
.size-selector {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.size-selector label {
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.size-dropdown {
    background-color: #333;
    color: white;
    border: 1px solid #555;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.size-dropdown:focus {
    outline: none;
    border-color: #ffff00;
    box-shadow: 0 0 0 2px rgba(255, 255, 0, 0.2);
}

/* Botão de Compra */
.buy-button {
    background-color: #ffff00;
    color: #1A1A2E;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: rgba(255, 193, 7, 0.57) 0px 0px 24.4058px 0px;
}

.buy-button:hover {
    background-color: #e6e600;
}

.buy-button i {
    width: 20px;
    height: 20px;
}

/* Informações de Frete */
.shipping-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.shipping-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shipping-item i {
    width: 16px;
    height: 16px;
    color: #00ff00;
}

.shipping-text {
    font-size: 0.9rem;
}

.shipping-text.green {
    color: #00ff00;
}

.shipping-text.white {
    color: white;
}

/* Responsividade para a seção de produto */
@media (max-width: 768px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }

    .product-title {
        font-size: 2rem;
    }

    .main-image-container {
        min-height: 520px;
        padding: 1rem;
    }

    .current-price {
        font-size: 2rem;
    }

    .buy-button {
        padding: 0.875rem 1.5rem;
        font-size: 1.1rem;
    }

    .thumbnails {
        gap: 0.5rem;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .product-section {
        padding: 2rem 1rem;
    }

    .product-container {
        padding: 0.75rem;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .main-image-container {
        min-height: 455px;
    }

    .current-price {
        font-size: 1.8rem;
    }

    .nav-arrow {
        width: 35px;
        height: 35px;
    }

    .nav-arrow i {
        width: 16px;
        height: 16px;
    }
}

/* Container padrão */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Títulos de seção */
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #ffff00;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-title i {
    width: 24px;
    height: 24px;
    color: #ff6b35;
}

/* Seção "O que vem no seu Kit Patriota" */
.kit-contents {
    background-color: #1A1E26;
    padding: 4rem 0;
}

.kit-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    width: 100%;
}

.kit-item {
    background: rgba(31, 41, 55, 0.8);
    /* bg-gray-800/80 */
    backdrop-filter: blur(12px);
    /* backdrop-blur-md */
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1rem;
    /* rounded-2xl */
    padding: 1rem;
    /* p-4 */
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(74, 222, 128, 0.2);
    /* border border-green-400/20 */
    transition: transform 0.3s ease;
    /* transition-transform */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.kit-item:hover {
    transform: scale(1.05);
    /* hover:scale-105 */
}

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

.kit-item:hover::before {
    left: 100%;
}

/* Bordas coloridas específicas para cada item - removidas para usar borda verde padrão */

.item-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.item-content h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

/* Cores específicas para cada título */
.kit-item:nth-child(1) .item-content h3 {
    color: #4ade80;
    /* Verde */
}

.kit-item:nth-child(2) .item-content h3 {
    color: #facc15;
    /* Amarelo */
}

.kit-item:nth-child(3) .item-content h3 {
    color: #60a5fa;
    /* Azul */
}

.kit-item:nth-child(4) .item-content h3 {
    color: #4ade80;
    /* Verde */
}

.item-content p {
    color: white;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}

/* Preços dos itens */
.item-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.item-original-price {
    font-size: 0.8rem;
    color: #888;
    text-decoration: line-through;
}

.item-current-price {
    font-size: 1rem;
    font-weight: bold;
    color: #ffff00;
}

/* Seta de navegação */
.item-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(250, 204, 21, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.item-arrow i {
    width: 20px;
    height: 20px;
    color: #facc15;
    transition: transform 0.3s ease;
}

.kit-item:hover .item-arrow {
    background: rgba(250, 204, 21, 0.3);
    transform: scale(1.1);
}

.kit-item:hover .item-arrow i {
    transform: translateX(3px);
}

/* Seção "Não é mais sobre política" */
.mission-banner {
    padding: 3rem 0;
}

.mission-banner .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Estilos específicos para o banner da missão */
.mission-banner-card {
    background: linear-gradient(to right, rgba(34, 197, 94, 0.2), rgba(234, 179, 8, 0.2));
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.mission-banner-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: #facc15;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.mission-banner-description {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #e5e7eb;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin: 0;
}

/* Seção "Sua compra 100% protegida" */
.security-section {
    padding: 2rem 0;
    background-color: rgba(31, 41, 55, 0.5);
}

.security-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.security-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: #facc15;
}

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

.security-card {
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    border: 1px solid;
    transition: transform 0.3s ease;
}

.security-card:hover {
    transform: scale(1.02);
}

.security-card-green {
    border-color: rgba(74, 222, 128, 0.2);
}

.security-card-yellow {
    border-color: rgba(250, 204, 21, 0.2);
}

.security-card-blue {
    border-color: rgba(96, 165, 250, 0.2);
}

.security-emoji {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
}

.security-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    margin-top: 0;
}

.security-title-green {
    color: #4ade80;
}

.security-title-yellow {
    color: #facc15;
}

.security-title-blue {
    color: #60a5fa;
}

.security-card-description {
    color: #d1d5db;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin: 0;
}

/* Seção de Testemunhos */
.testimonials {
    background-color: #1A1A2E;
    padding: 4rem 0;
}

.testimonial-image {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-image img {
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.testimonial-card {
    background-color: #2a2a3e;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.client-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.stars {
    color: #ffff00;
    font-size: 1rem;
}

.testimonial-card p {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-time {
    color: #888;
    font-size: 0.9rem;
}

/* Seção Newsletter */
.newsletter {
    background-color: #1A1A2E;
    padding: 4rem 0;
    text-align: center;
}

.newsletter-desc {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.email-input {
    flex: 1;
    background-color: #2a2a3e;
    border: 1px solid #555;
    border-radius: 8px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
}

.email-input::placeholder {
    color: #888;
}

.email-input:focus {
    outline: none;
    border-color: #ffff00;
    box-shadow: 0 0 0 2px rgba(255, 255, 0, 0.2);
}

.newsletter-btn {
    background-color: #FACC15;
    color: #1A1A2E;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: #e6e600;
}

/* Rodapé */
.footer {
    background-color: #0f0f1a;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

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

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-section h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links a {
    color: #ccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffff00;
}

.social-links i {
    width: 16px;
    height: 16px;
}

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

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

/* Responsividade para novas seções */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .kit-items {
        max-width: 100%;
        gap: 1rem;
    }

    .kit-item {
        padding: 1rem;
        gap: 1rem;
    }

    .item-image {
        width: 80px;
        height: 80px;
    }

    .security-grid {
        gap: 0.75rem;
    }

    .security-card {
        padding: 0.75rem;
    }

    .security-emoji {
        font-size: 1.5rem;
    }

    .security-card-title {
        font-size: 1rem;
    }

    .security-card-description {
        font-size: 0.8rem;
    }

    .testimonial-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.3rem;
    }

    .kit-item {
        flex-direction: row;
        text-align: left;
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .item-image {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }

    .item-content h3 {
        font-size: 1rem;
    }

    .item-content p {
        font-size: 0.85rem;
    }

    .item-price {
        margin-top: 0.25rem;
    }

    .item-original-price {
        font-size: 0.75rem;
    }

    .item-current-price {
        font-size: 0.9rem;
    }

    .item-arrow {
        width: 35px;
        height: 35px;
    }

    .item-arrow i {
        width: 16px;
        height: 16px;
    }

    .mission-banner .container {
        padding: 1.5rem;
    }

    .banner-title {
        font-size: 1.3rem;
    }

    .banner-subtitle {
        font-size: 0.9rem;
    }

    .testimonial-image img {
        max-width: 250px;
    }
}