/* ===== PAGE BANNER ===== */
.page-banner {
    margin-top: var(--header-height);
    padding: 60px 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.page-banner-content {
    max-width: var(--max-width);
    margin: 0 auto;
}

.page-banner h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.product-detail-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* ===== GALLERY ===== */
.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    background: var(--color-white);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
}

.gallery-main img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    border-radius: 4px;
}

.gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-thumbs .thumb {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-thumbs .thumb:hover,
.gallery-thumbs .thumb.active {
    border-color: var(--color-blue);
    transform: scale(1.05);
}

.gallery-thumbs .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== PRODUCT INFO ===== */
.product-info {
    background: var(--color-white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.product-info h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-blue);
}

.product-description {
    margin-bottom: 30px;
}

.product-description p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.product-description strong {
    color: var(--color-dark);
}

/* ===== DOCUMENTS ===== */
.product-docs {
    margin: 30px 0;
    padding: 25px;
    background: #f0f4f8;
    border-radius: 8px;
}

.doc-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-doc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-blue);
    color: var(--color-white);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-doc:hover {
    background: var(--color-blue-dark);
    transform: translateY(-2px);
}

.flag-icon {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.grafico-section {
    margin-top: 20px;
}

.grafico-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.grafico-img {
    width: 100%;
    max-width: 500px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===== CTA ===== */
.product-cta-section {
    margin-top: 30px;
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid var(--color-border);
}

.btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: #25D366;
    color: var(--color-white);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-cta i {
    font-size: 22px;
}

/* ===== EMPRESA PAGE ===== */
.empresa-content {
    padding: 60px 20px;
    background: var(--color-white);
}

.empresa-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.empresa-image {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.empresa-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.empresa-text {
    margin-bottom: 50px;
}

.empresa-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-blue);
}

.empresa-text p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 15px;
}

.empresa-values {
    background: #f0f4f8;
    padding: 40px;
    border-radius: 8px;
}

.empresa-values h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-blue);
}

.empresa-values ul {
    list-style: none;
    padding: 0;
}

.empresa-values li {
    padding: 10px 0 10px 30px;
    font-size: 15px;
    color: #555;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.empresa-values li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--color-blue);
    border-radius: 50%;
}

.empresa-values li:last-child {
    border-bottom: none;
}

/* ===== DROPDOWN MENU ===== */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-dark);
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 5px 5px;
    z-index: 1000;
    padding: 10px 0;
}

.has-dropdown:hover .dropdown-menu {
    display: block !important;
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 13px;
    text-transform: none;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-gallery {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 40px 20px;
    }

    .page-banner h1 {
        font-size: 26px;
    }

    .product-info {
        padding: 25px;
    }

    .product-info h2 {
        font-size: 20px;
    }

    .doc-buttons {
        flex-direction: column;
    }

    .empresa-values {
        padding: 25px;
    }
}

/* ===== SPECS TABLE ===== */
.specs-table {
    width: 100%;
    max-width: 500px;
    border-collapse: collapse;
    margin: 15px 0;
}

.specs-table tr {
    border-bottom: 1px solid var(--color-border);
}

.specs-table td {
    padding: 10px 15px;
    font-size: 14px;
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--color-dark);
    width: 45%;
}

.specs-table td:last-child {
    color: #555;
}

/* ===== VIDEOS SECTION ===== */
.videos-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.videos-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.video-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-placeholder {
    background: linear-gradient(135deg, var(--color-dark) 0%, #2a4a57 100%);
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--color-white);
}

.video-placeholder i {
    font-size: 48px;
    color: #ff0000;
}

.video-placeholder span {
    font-size: 16px;
    font-weight: 600;
}

.video-card .btn-saiba-mais {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--color-blue);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0 0 8px 8px;
}

.video-card .btn-saiba-mais:hover {
    background: var(--color-blue-dark);
}

.videos-cta {
    text-align: center;
    padding: 40px 20px;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.videos-cta h3 {
    font-size: 22px;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.videos-cta p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.social-links-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.btn-youtube {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: #ff0000;
    color: var(--color-white);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-youtube:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-dark);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 18px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-social:hover {
    transform: scale(1.15);
    background: var(--color-blue);
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    padding: 60px 20px;
    background: var(--color-white);
}

.contact-page-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact-page-intro {
    text-align: center;
    margin-bottom: 50px;
}

.contact-page-intro h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.contact-page-intro p {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    background: #f0f4f8;
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-card i {
    font-size: 28px;
    color: var(--color-blue);
    margin-bottom: 12px;
}

.contact-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.contact-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

.contact-card a {
    color: var(--color-blue);
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--color-blue-dark);
}

.contact-page-form .contact-form.dark label {
    color: var(--color-dark);
}

.contact-page-form .contact-form.dark input,
.contact-page-form .contact-form.dark textarea {
    background: #f8f9fa;
    color: var(--color-dark);
    border: 1px solid #ddd;
}

.contact-page-form .contact-form.dark input:focus,
.contact-page-form .contact-form.dark textarea:focus {
    border-color: var(--color-blue);
}

/* ===== ASSIST SECTION ===== */
.assist-section {
    padding: 60px 20px;
    background: var(--color-white);
}

.assist-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.assist-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.assist-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.assist-cta {
    margin: 25px 0;
}

.assist-contact-info {
    margin-top: 25px;
    padding: 20px;
    background: #f0f4f8;
    border-radius: 8px;
}

.assist-contact-info p {
    font-size: 15px;
    color: var(--color-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.assist-contact-info i {
    color: var(--color-blue);
    width: 20px;
}

.assist-form-wrapper .contact-form.dark h3 {
    font-size: 20px;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.assist-form-wrapper .contact-form.dark label {
    color: var(--color-dark);
}

.assist-form-wrapper .contact-form.dark input,
.assist-form-wrapper .contact-form.dark textarea {
    background: #f8f9fa;
    color: var(--color-dark);
    border: 1px solid #ddd;
}

.assist-form-wrapper .contact-form.dark input:focus,
.assist-form-wrapper .contact-form.dark textarea:focus {
    border-color: var(--color-blue);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .videos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
    .assist-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
}
