/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4678a5;
    --secondary-color: #3b82f6;
    --accent-color: #f59e0b;
    --text-dark: #575756;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===================================
   Header Styles
   =================================== */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 10000;
    pointer-events: none;
}

.header * {
    pointer-events: auto;
}

.header-top {
    background: var(--primary-color);
    color: white;
    width: 100%;
    padding: 10px 0;
}

.header-top-content {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    gap: 15px;
    -webkit-gap: 15px;
}


.header-contact {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
}

.contact-item:hover {
    opacity: 0.8;
}

.contact-item i {
    font-size: 12px;
}

.header-social {
    display: flex;
    gap: 15px;
}

.header-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.header-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.navbar {
    background: var(--bg-white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10000;
    pointer-events: auto;
    isolation: isolate; /* Creates new stacking context */
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
    min-height: 50px;
}

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

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 10px;
    border: 2px dashed var(--border-color);
    border-radius: 5px;
    background: var(--bg-light);
}

.logo-placeholder .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.logo-placeholder .logo-subtitle {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end;
    min-height: 50px;
}

.nav-menu > li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-menu > li > a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 10px;
    position: relative;
    text-decoration: none;
    display: block;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 100%;
}

.nav-menu > li > a.btn-area-cliente::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
}

.nav-menu > li > a.active {
    color: var(--primary-color);
}

.btn-area-cliente {
    background: var(--primary-color) !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 5px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 15px rgba(70, 120, 165, 0.3) !important;
    transition: var(--transition) !important;
    border: none !important;
    position: relative;
    margin-left: 10px;
    white-space: nowrap;
    overflow: hidden;
    z-index: 1;
}

.btn-area-cliente::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;
    z-index: -1;
}

.btn-area-cliente:hover::before {
    left: 100%;
}

.btn-area-cliente:hover {
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(70, 120, 165, 0.4) !important;
    background: #3a6a94 !important;
}

.btn-area-cliente::after {
    display: none !important;
    content: none !important;
}

.dropdown {
    position: relative;
    z-index: 10001;
    pointer-events: auto;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
    text-decoration: none;
    color: inherit;
}

.dropdown > a:hover {
    color: var(--primary-color);
}

/* Prevent Bootstrap from interfering with our custom dropdown */
.nav-menu .dropdown > a[href="#"] {
    pointer-events: auto;
    cursor: pointer;
}

/* Disable Bootstrap dropdown behavior for our custom dropdowns */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown[data-bs-toggle] {
    /* Remove Bootstrap data attribute if accidentally added */
}

/* Garantir que o dropdown funcione mesmo com Bootstrap carregado */
.nav-menu .dropdown > a {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Ensure our dropdown menu is above Bootstrap modals if any */
.nav-menu .dropdown-menu {
    position: absolute !important;
    z-index: 10001 !important;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    margin-top: 10px;
    z-index: 10001;
    pointer-events: auto;
    display: block;
    list-style: none;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Old mobile menu styles removed - using off-canvas menu instead */

/* Old mobile menu overlay removed - using off-canvas menu instead */

/* ===================================
   Hero Section
   =================================== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 0;
    pointer-events: none;
}

.hero * {
    pointer-events: auto;
}

.hero-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(70, 120, 165, 0.3);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

.hero-image-placeholder img {
    pointer-events: none !important;
}

.hero-image-placeholder .placeholder-content {
    color: white;
}

.hero-image-placeholder .placeholder-dimensions {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-image-placeholder .placeholder-label {
    color: rgba(255, 255, 255, 0.9);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

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

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
}

.hero-shape svg {
    width: 100%;
    height: 100%;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: #25D366 !important;
    color: white !important;
    border: none !important;
    padding: 14px 30px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-whatsapp:hover::before {
    width: 300px;
    height: 300px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5) !important;
    background: #20BA5A !important;
}

.btn-whatsapp i {
    font-size: 20px;
    animation: pulse 2s infinite;
}

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

.btn-whatsapp.btn-large {
    padding: 18px 40px !important;
    font-size: 16px !important;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===================================
   Services Section
   =================================== */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    display: -ms-grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    -ms-grid-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    -webkit-gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(70, 120, 165, 0.05), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(70, 120, 165, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    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: 32px;
    transition: all 0.4s ease;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(70, 120, 165, 0.3);
}

.service-card:hover .service-icon::after {
    opacity: 1;
    transform: scale(1);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.service-card p i {
    color: var(--primary-color);
    margin-right: 8px;
    animation: fadeIn 0.5s ease;
}

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

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

.service-link i {
    font-size: 12px;
}

/* ===================================
   About Section
   =================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.about-features {
    margin-top: 40px;
    display: grid;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: #f3f4f6;
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    box-shadow: var(--shadow);
    position: relative;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.placeholder-content i {
    font-size: 48px;
    color: var(--text-light);
    opacity: 0.5;
}

.placeholder-dimensions {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    background: white;
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.placeholder-label {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
}

/* ===================================
   Stats Section
   =================================== */
.stats {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: white;
    opacity: 1;
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    background: var(--bg-light);
    text-align: center;
}

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

.cta-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact li i {
    color: var(--accent-color);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: #d97706;
    text-decoration: underline;
}

/* ===================================
   Instagram Feed Section
   =================================== */
.instagram-feed {
    background: var(--bg-light);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}

.instagram-header {
    text-align: center;
    margin-bottom: 40px;
}

.instagram-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.instagram-header h3 i {
    color: #E4405F;
    font-size: 32px;
}

.instagram-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
}

.instagram-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition);
}

.instagram-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.instagram-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border: 2px dashed var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-light);
}

.instagram-placeholder i {
    font-size: 40px;
    color: #E4405F;
    opacity: 0.6;
}

.instagram-placeholder span {
    font-size: 12px;
    font-weight: 500;
}

/* Ícones nos textos */
.service-card p i,
.about-text p i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 14px;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    padding: 80px 0;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: var(--shadow-lg);
}

.accordion-button {
    background: var(--bg-white);
    color: var(--text-dark);
    font-weight: 600;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:not(.collapsed) i {
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
    padding: 25px;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.8;
}

.accordion-body ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.accordion-body ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.accordion-body a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.accordion-body a:hover {
    text-decoration: underline;
}

.faq-cta {
    margin-top: 50px;
}

/* ===================================
   Links Úteis Section
   =================================== */
.links-section {
    padding: 80px 0;
}

.links-category {
    margin-bottom: 60px;
}

.link-card {
    display: block;
    background: var(--bg-white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(70, 120, 165, 0.05), transparent);
    transition: left 0.5s;
}

.link-card:hover::before {
    left: 100%;
}

.link-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(70, 120, 165, 0.2);
    border-color: var(--primary-color);
    text-decoration: none;
    color: var(--text-dark);
}

.link-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    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: 28px;
    transition: all 0.4s ease;
}

.link-card:hover .link-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(70, 120, 165, 0.3);
}

.link-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.link-card:hover h4 {
    color: var(--primary-color);
}

.link-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ===================================
   Landing Page Styles
   =================================== */
.hero-landing {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-title-landing {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: white;
}

.hero-subtitle-landing {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-features-landing {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-badge i {
    color: var(--accent-color);
}

.btn-large-landing {
    padding: 20px 50px !important;
    font-size: 18px !important;
}

.hero-image-landing {
    position: relative;
}

.hero-image-landing .image-placeholder {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.benefit-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    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: 32px;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: rotateY(360deg) scale(1.1);
}

.benefit-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.product-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    text-align: center;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

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

.product-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

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

.product-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    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: 36px;
    transition: all 0.4s ease;
}

.product-card:hover .product-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(70, 120, 165, 0.3);
}

.product-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.product-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.product-features li i {
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 14px;
}

.stats-landing {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    min-width: 120px;
}

.stat-number-landing {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 100px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* ===================================
   Page Header (for inner pages)
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

/* Service Banner with Image */
.service-banner {
    position: relative;
    padding: 0;
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.service-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-banner-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 40px;
    text-align: center;
}

.service-banner-placeholder i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.service-banner-placeholder .placeholder-dimensions {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.service-banner-placeholder .placeholder-label {
    font-size: 14px;
    opacity: 0.8;
    display: block;
}

.service-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(70, 120, 165, 0.85), rgba(59, 130, 246, 0.75));
    z-index: 1;
}

.service-banner-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.service-banner-content h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-banner-content p {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .service-banner {
        min-height: 250px;
    }
    
    .service-banner-placeholder {
        min-height: 250px;
    }
    
    .service-banner-content {
        padding: 30px 0;
    }
    
    .service-banner-content h1 {
        font-size: 28px;
    }
    
    .service-banner-content p {
        font-size: 16px;
    }
}

.breadcrumb {
    background: var(--bg-light);
    padding: 15px 0;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--text-light);
    margin: 0 10px;
}

/* ===================================
   Contact Page
   =================================== */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-item-box {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item-box i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-box-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-item-box-content p,
.contact-item-box-content a {
    color: var(--text-light);
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(70, 120, 165, 0.1);
}

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

/* Form Message Styles */
.form-message {
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    animation: slideIn 0.3s ease-out;
    word-wrap: break-word;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

/* Form button loading state */
.contact-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ===================================
   Documents Page
   =================================== */
.documents-section {
    padding: 40px 0 60px;
    min-height: calc(100vh - 400px);
}

.drive-iframe-wrapper {
    width: 100%;
    height: calc(100vh - 300px);
    min-height: 600px;
    max-height: 1200px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
    position: relative;
}

.drive-embed {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ===================================
   Service Detail Page
   =================================== */
.service-detail {
    padding: 60px 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.service-detail-main h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-detail-main p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-main ul {
    list-style: none;
    margin: 30px 0;
}

.service-detail-main ul li {
    padding: 15px 0;
    padding-left: 0;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.service-detail-main ul li::before {
    display: none;
}

.service-sidebar {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.service-image-placeholder {
    width: 100%;
    height: 300px;
    background: #f3f4f6;
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    box-shadow: var(--shadow);
}

.service-sidebar h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-sidebar .btn {
    width: 100%;
    margin-top: 20px;
}

/* ===================================
   Off-Canvas Mobile Menu
   =================================== */
.offwrap {
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    z-index: 9998;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

body.nav-expanded .offwrap {
    opacity: 1;
    pointer-events: auto;
}

/* Nav Expander Button */
.expand-btn-inner {
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.humburger {
    display: flex;
    align-items: center;
}

.nav-expander {
    background: transparent;
    color: var(--primary-color);
    display: block;
    font-size: 16px;
    font-weight: 400;
    height: auto;
    margin-right: 0;
    padding: 0;
    right: 0;
    text-decoration: none;
    text-transform: uppercase;
    top: 0;
    transition: right 0.3s ease-in-out 0s;
    width: auto;
    z-index: 12;
    cursor: pointer;
}

.nav-expander .bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 3px;
    width: 30px;
    height: 30px;
}

.nav-expander .bar span {
    display: block;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.nav-expander:hover .bar span,
.nav-expander:active .bar span {
    background: var(--accent-color);
}

.nav-expander:active .bar {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
}

/* Off-Canvas Menu */
.right_menu_togle {
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
    display: block;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    position: fixed;
    right: -100%;
    font-size: 15px;
    top: 0;
    width: 100%;
    max-width: 400px;
    z-index: 9999;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-overflow-scrolling: touch;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

body.nav-expanded .right_menu_togle {
    right: 0;
}

body.nav-expanded {
    overflow: hidden;
}

/* Close Button */
.right_menu_togle .close-btn {
    overflow: hidden;
    padding: 18px 20px;
    text-align: right;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-close {
    display: inline-flex;
    width: 44px;
    height: 44px;
    position: relative;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.05);
}

.nav-close .line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 2px;
}

.nav-close .line1,
.nav-close .line2 {
    position: absolute;
    width: 30px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.nav-close .line1 {
    transform: rotate(45deg);
}

.nav-close .line2 {
    transform: rotate(-45deg);
}

.nav-close:hover,
.nav-close:active {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
}

.nav-close:hover .line1,
.nav-close:hover .line2 {
    background: var(--accent-color);
}

/* Canvas Logo */
.right_menu_togle .canvas-logo {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 0;
}

.right_menu_togle .canvas-logo img {
    max-width: 160px;
    height: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
}

.right_menu_togle .canvas-logo a:hover img {
    transform: scale(1.05);
}


/* Mobile Menu List */
.right_menu_togle .mobile-menu-list {
    list-style: none;
    padding: 8px 0;
    margin: 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.right_menu_togle .mobile-menu-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0;
    transition: background-color 0.2s ease;
    -webkit-transition: background-color 0.2s ease;
}

.right_menu_togle .mobile-menu-list li:first-child {
    border-top: none;
}

.right_menu_togle .mobile-menu-list li:last-child {
    border-bottom: none;
}

.right_menu_togle .mobile-menu-list li:active {
    background: rgba(255, 255, 255, 0.05);
}

.right_menu_togle .mobile-menu-list li a {
    color: #ffffff !important;
    text-decoration: none;
    padding: 18px 24px;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    font-weight: 500;
    min-height: 56px;
    align-items: center;
    -webkit-tap-highlight-color: rgba(70, 120, 165, 0.2);
    cursor: pointer;
    position: relative;
    letter-spacing: 0.2px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    overflow: visible;
}

.right_menu_togle .mobile-menu-list li a > span {
    flex-shrink: 0;
}

.right_menu_togle .mobile-menu-list li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.25s ease;
    -webkit-transition: opacity 0.25s ease;
}

.right_menu_togle .mobile-menu-list li a:hover,
.right_menu_togle .mobile-menu-list li a:focus,
.right_menu_togle .mobile-menu-list li a:active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color) !important;
    padding-left: 30px;
    transform: translateX(3px);
}

.right_menu_togle .mobile-menu-list li a:hover::before,
.right_menu_togle .mobile-menu-list li a:focus::before,
.right_menu_togle .mobile-menu-list li a:active::before {
    opacity: 1;
}

.right_menu_togle .mobile-menu-list li a:active {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(1px) scale(0.98);
}

/* Active state for current page */
.right_menu_togle .mobile-menu-list li a.active {
    background: rgba(70, 120, 165, 0.15);
    color: var(--accent-color) !important;
    font-weight: 600;
}

.right_menu_togle .mobile-menu-list li a.active::before {
    opacity: 1;
}


/* Submenu Button */
.right_menu_togle .mobile-menu-list .has-sub > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #ffffff !important;
}

.right_menu_togle .mobile-menu-list .has-sub.active > a,
.right_menu_togle .mobile-menu-list .has-sub.open-sub > a {
    background: rgba(70, 120, 165, 0.15);
    color: var(--accent-color) !important;
}

.right_menu_togle .mobile-menu-list .has-sub.active > a::before,
.right_menu_togle .mobile-menu-list .has-sub.open-sub > a::before {
    opacity: 1;
}

.submenu-button {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    margin-left: 12px;
    -webkit-tap-highlight-color: transparent;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
}

.submenu-opened .submenu-button {
    background: rgba(245, 158, 11, 0.2);
    transform: rotate(180deg);
}

.submenu-button em {
    display: block;
    width: 12px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.submenu-button em::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background: #fff;
    top: -4px;
    left: 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.submenu-button em::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background: #fff;
    top: 4px;
    left: 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.submenu-opened .submenu-button em {
    background: transparent;
}

.submenu-opened .submenu-button em::before {
    transform: rotate(45deg);
    top: 0;
}

.submenu-opened .submenu-button em::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Submenu */
.right_menu_togle .mobile-menu-list .sub-menu {
    display: none;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 0;
    margin: 0;
    list-style: none;
    animation: slideDown 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-animation: slideDown 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid var(--primary-color);
    margin-left: 24px;
    margin-top: 4px;
    margin-bottom: 4px;
    border-radius: 0 4px 4px 0;
}

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

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

.right_menu_togle .mobile-menu-list .sub-menu.open-sub {
    display: block;
}

.right_menu_togle .mobile-menu-list .sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    margin: 0 8px 0 8px;
}

.right_menu_togle .mobile-menu-list .sub-menu li:first-child {
    margin-top: 2px;
}

.right_menu_togle .mobile-menu-list .sub-menu li:last-child {
    border-bottom: none;
    margin-bottom: 2px;
}

.right_menu_togle .mobile-menu-list .sub-menu li a {
    padding: 16px 20px 16px 48px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85) !important;
    min-height: 52px;
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: rgba(70, 120, 165, 0.15);
    font-weight: 400;
    position: relative;
    border-radius: 6px;
    margin: 2px 0;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    overflow: visible;
}

.right_menu_togle .mobile-menu-list .sub-menu li a::before {
    content: '→';
    position: absolute;
    left: 20px;
    opacity: 0.4;
    font-size: 14px;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
}

.right_menu_togle .mobile-menu-list .sub-menu li a:hover,
.right_menu_togle .mobile-menu-list .sub-menu li a:focus,
.right_menu_togle .mobile-menu-list .sub-menu li a:active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--accent-color) !important;
    padding-left: 52px;
    transform: translateX(4px);
}

.right_menu_togle .mobile-menu-list .sub-menu li a:hover::before,
.right_menu_togle .mobile-menu-list .sub-menu li a:focus::before {
    opacity: 1;
    transform: translateX(3px);
    color: var(--accent-color);
}

.right_menu_togle .mobile-menu-list .sub-menu li a:active {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(2px) scale(0.98);
}

/* Ensure menu items are always visible and functional */
.right_menu_togle .mobile-menu-list {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.right_menu_togle .mobile-menu-list li {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.right_menu_togle .mobile-menu-list li a {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Canvas Contact */
.right_menu_togle .canvas-contact {
    padding: 24px 24px 28px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.right_menu_togle .address-area {
    margin: 0;
}

.right_menu_togle .address-list {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    -webkit-transition: background-color 0.2s ease;
}

.right_menu_togle .address-list:hover {
    background: rgba(255, 255, 255, 0.03);
}

.right_menu_togle .address-list:last-child {
    margin-bottom: 0;
}

.right_menu_togle .info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-radius: 10px;
    margin-right: 16px;
    flex-shrink: 0;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
}

.right_menu_togle .address-list:hover .info-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3) 0%, rgba(245, 158, 11, 0.15) 100%);
    transform: scale(1.05);
    border-color: rgba(245, 158, 11, 0.4);
}

.right_menu_togle .info-icon i {
    color: var(--accent-color);
    font-size: 18px;
}

.right_menu_togle .info-content {
    flex: 1;
}

.right_menu_togle .info-content .title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px 0;
    letter-spacing: 0.3px;
}

.right_menu_togle .info-content em {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-style: normal;
    line-height: 1.7;
    display: block;
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
}

.right_menu_togle .info-content em a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 0;
    display: inline;
    transition: color 0.2s ease;
    -webkit-transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.right_menu_togle .info-content em a:hover,
.right_menu_togle .info-content em a:active {
    color: var(--accent-color);
    background: transparent;
    padding: 0;
    border-bottom-color: var(--accent-color);
}

/* ===================================
   Mobile Menu Responsive Adjustments
   =================================== */
@media (max-width: 320px) {
    .right_menu_togle {
        max-width: 100%;
        width: 100%;
    }
    
    .right_menu_togle .close-btn {
        padding: 14px 16px;
    }
    
    .right_menu_togle .canvas-logo {
        padding: 20px 16px 16px;
    }
    
    .right_menu_togle .canvas-logo img {
        max-width: 120px;
    }
    
    
    .right_menu_togle .mobile-menu-list li a {
        padding: 14px 16px;
        font-size: 15px;
        min-height: 48px;
    }
    
    
    .right_menu_togle .mobile-menu-list .sub-menu {
        margin-left: 16px;
    }
    
    .right_menu_togle .mobile-menu-list .sub-menu li a {
        padding: 12px 16px 12px 40px;
        font-size: 14px;
        min-height: 44px;
    }
    
    .right_menu_togle .mobile-menu-list .sub-menu li a::before {
        left: 16px;
    }
    
    .right_menu_togle .canvas-contact {
        padding: 20px 16px 24px;
    }
    
    .right_menu_togle .address-list {
        margin-bottom: 16px;
        padding: 10px;
    }
    
    .right_menu_togle .info-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }
    
    .right_menu_togle .info-icon i {
        font-size: 16px;
    }
    
    .right_menu_togle .info-content .title {
        font-size: 13px;
    }
    
    .right_menu_togle .info-content em {
        font-size: 12px;
    }
    
    .nav-expander .bar {
        width: 28px;
        height: 28px;
        gap: 2px;
    }
    
    .submenu-button {
        width: 32px;
        height: 32px;
    }
}

@media (min-width: 321px) and (max-width: 480px) {
    .right_menu_togle {
        max-width: 100%;
        width: 100%;
    }
    
    .right_menu_togle .close-btn {
        padding: 16px 18px;
    }
    
    .right_menu_togle .canvas-logo {
        padding: 22px 20px 18px;
    }
    
    .right_menu_togle .canvas-logo img {
        max-width: 140px;
    }
    
    
    .right_menu_togle .mobile-menu-list li a {
        padding: 15px 20px;
        font-size: 15px;
        min-height: 50px;
    }
    
    
    .right_menu_togle .mobile-menu-list .sub-menu {
        margin-left: 20px;
    }
    
    .right_menu_togle .mobile-menu-list .sub-menu li a {
        padding: 13px 20px 13px 42px;
        font-size: 14px;
        min-height: 46px;
    }
    
    .right_menu_togle .mobile-menu-list .sub-menu li a::before {
        left: 18px;
    }
    
    .right_menu_togle .canvas-contact {
        padding: 22px 20px 26px;
    }
    
    .right_menu_togle .address-list {
        margin-bottom: 18px;
        padding: 12px;
    }
    
    .right_menu_togle .info-icon {
        width: 42px;
        height: 42px;
        margin-right: 14px;
    }
    
    .right_menu_togle .info-icon i {
        font-size: 17px;
    }
    
    .right_menu_togle .info-content .title {
        font-size: 13px;
    }
    
    .right_menu_togle .info-content em {
        font-size: 12px;
    }
    
    .nav-expander .bar {
        width: 30px;
        height: 30px;
        gap: 2.5px;
    }
    
    .submenu-button {
        width: 34px;
        height: 34px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .right_menu_togle {
        max-width: 380px;
    }
    
    .right_menu_togle .mobile-menu-list li a {
        padding: 16px 24px;
        min-height: 52px;
    }
    
    .right_menu_togle .mobile-menu-list .sub-menu {
        margin-left: 24px;
    }
    
    .right_menu_togle .mobile-menu-list .sub-menu li a {
        padding: 14px 20px 14px 44px;
        min-height: 48px;
    }
    
    .right_menu_togle .address-list {
        padding: 14px;
    }
}

@media (min-width: 769px) and (max-width: 968px) {
    .right_menu_togle {
        max-width: 400px;
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .expand-btn-inner {
        display: flex;
    }
    
    /* Old mobile menu styles removed - using off-canvas menu instead */

    .nav-menu {
        display: none;
    }
    
    /* Hide desktop menu on mobile */
    .navbar .nav-menu {
        display: none;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        margin: 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
        margin-top: 10px;
        padding: 10px 20px;
    }

    .nav-menu li a {
        display: block;
        padding: 18px 20px;
        font-size: 16px;
        color: var(--text-dark);
        width: 100%;
        transition: background-color 0.2s ease;
        -webkit-tap-highlight-color: rgba(70, 120, 165, 0.1);
    }
    
    .nav-menu li a:active,
    .nav-menu li a:focus {
        background-color: var(--bg-light);
        color: var(--primary-color);
        outline: none;
    }
    
    /* Hover only for devices that support it */
    @media (hover: hover) {
        .nav-menu li a:hover {
            background-color: var(--bg-light);
            color: var(--primary-color);
        }
    }
    
    .nav-menu li a.btn-area-cliente {
        margin: 10px 20px;
        text-align: center;
        border-radius: 5px;
        padding: 14px 20px;
    }

    .dropdown {
        width: 100%;
    }
    
    .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .dropdown > a i {
        transition: transform 0.3s ease;
        font-size: 12px;
    }
    
    .dropdown.active > a i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: none !important;
        box-shadow: none;
        background: var(--bg-light);
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        display: block !important;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: block !important;
    }
    
    .dropdown.active > a i {
        transform: rotate(180deg);
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-menu li a {
        padding: 15px 20px 15px 40px;
        font-size: 15px;
        color: var(--text-light);
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Better touch targets for mobile */
    .nav-menu li a,
    .dropdown-menu li a {
        -webkit-tap-highlight-color: rgba(70, 120, 165, 0.1);
        touch-action: manipulation;
    }
    
    /* Improve dropdown arrow visibility */
    .dropdown > a i {
        margin-left: auto;
        padding-left: 10px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-contact {
        width: 100%;
        justify-content: center;
    }
    
    .header-social {
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-top {
        flex-direction: column;
        text-align: center;
    }

    .header-contact {
        justify-content: center;
    }

    .drive-iframe-wrapper {
        height: calc(100vh - 250px);
        min-height: 500px;
    }

    .btn-whatsapp {
        padding: 12px 20px !important;
        font-size: 12px !important;
    }

    .btn-whatsapp.btn-large {
        padding: 14px 30px !important;
        font-size: 14px !important;
    }

    .section-title::after {
        width: 40px;
        height: 3px;
    }

    .service-card:hover {
        transform: translateY(-10px) scale(1.01);
    }

    .hero-title {
        font-size: 32px !important;
    }

    .hero-subtitle {
        font-size: 18px !important;
    }

    .hero-title-landing {
        font-size: 32px !important;
    }

    .hero-subtitle-landing {
        font-size: 16px !important;
    }

    .product-card.featured {
        transform: scale(1);
    }

    .stats-landing {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 90%;
        max-width: 320px;
    }
    
    .nav-menu li a {
        padding: 16px 18px;
        font-size: 15px;
    }
    
    .dropdown-menu li a {
        padding: 14px 18px 14px 35px;
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }
}


