* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* 🔝 Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar {
    padding: 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-logo img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    height: 100%;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 900;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #00425e;
}

.nav-menu li {
    position: relative;
    list-style: none;
    list-style-type: none;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu li a {
    font-weight: 900;
    color: #333;
    display: flex;
    align-items: center;
    height: 100%;
}

.li-btn {
    list-style-type: none;
}

.li-btn a {
    text-decoration: none;
    color: #333;
}

.btn-whatsapp-nav {
    background: #00425e;
    color: white;
    width: 100%;
    text-align: center;
    height: 60px;
    padding: 12px 30px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.btn-whatsapp-nav i {
    font-size: 1.2rem;
}

.btn-whatsapp-nav a {
    color: white !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.btn-whatsapp-nav:hover {
    background: #003349;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Dropdown */
ul.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 999;
    border-radius: 16px;
}

ul.dropdown li a {
    color: black;
    border-radius: 16px;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
}

ul.dropdown li a:hover {
    background-color: #f5f5f5;
}

/* Mostrar o dropdown ao passar o mouse */
li:hover > ul.dropdown {
    display: block;
}

/* Ajustes para o menu dropdown em dispositivos móveis */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .nav-menu li {
        margin: 1rem 0;
        justify-content: center;
        width: 100%;
    }

    .nav-menu li a {
        justify-content: center;
        width: 100%;
        padding: 0.5rem;
    }

    .nav-menu .li-btn {
        margin-top: 1.5rem;
        display: flex;
        justify-content: center;
    }

    .nav-menu .btn-whatsapp-nav {
        margin: 0 auto;
        width: 80%;
        max-width: 300px;
        justify-content: center;
    }

    .nav-menu .btn-whatsapp-nav a {
        color: white;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .nav-toggle {
        display: flex;
    }

    ul.dropdown {
        position: static;
        display: none;
        width: 100%;
        background: #f5f5f5;
        box-shadow: none;
        border: none;
    }

    .nav-menu li:hover > ul.dropdown {
        display: none;
    }

    .nav-menu li.active > ul.dropdown {
        display: block;
    }

    ul.dropdown li a {
        padding: 10px;
        text-align: center;
    }
}

/* Ajustes do Toggle Menu */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ⏱️ Banner Principal */
.hero {
    margin-top: 80px;
    background:url('assets/HEADER-3.png') center/cover;
    color: white;
    padding: 50px 0;
    min-height: 40vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Seções alternadas */
.section {
    padding: 80px 0;
}

.section-intro {
    background: #f8f9fa;
}

.section-facial {
    background: white;
}

.section-tools {
    background: #f8f9fa;
}

.section-control {
    background: white;
}

.section-services {
    background: #f8f9fa;
    padding: 100px 0;
}

.section-innovation {
    background: white;
}

.section-workflow {
    background: #f8f9fa;
    padding: 100px 0;
}

.section-portfolio {
    background: white;
    padding: 60px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-wrapper.single-column {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper.single-column .text-content {
    text-align: center;
    max-width: 100%;
}

.text-content h2 {
    font-size: 2.5rem;
    color: #000; /* Mudando para preto */
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.text-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #888; /* Mudando para um cinza mais claro */
    line-height: 1.8;
}

.image-content {
    position: relative;
}

.image-content img {
    width: 100%;
    border-radius: 15px;
}

/* 🧩 Services Grid */
.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

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

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #00425e;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-card .icon {
    font-size: 3.5rem;
    color: #00425e;
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.service-card .features-list {
    text-align: left;
    margin-top: 1rem;
}

.service-card .features-list p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* Ajuste para o card de serviço com lista */
.service-card:first-child {
    height: auto;
    padding-bottom: 2rem;
}

/* 🔄 Workflow Section */
.workflow-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(13, 1fr);
    gap: 0;
    margin-top: 3rem;
    align-items: center;
}

.workflow-step {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    grid-column: span 2;
}

.workflow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.workflow-step .icon {
    font-size: 1.8rem;
    color: #00425e;
    margin-bottom: 0.8rem;
}

.workflow-step h3 {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.workflow-arrow {
    grid-column: span 1;
    text-align: center;
    color: #00425e;
    font-size: 1.2rem;
}

/* 🖼️ Portfolio */
.portfolio-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 66, 94, 0.9);
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.portfolio-overlay p {
    font-size: 1rem;
    line-height: 1.6;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* ✨ Call to Action */
.cta {
    padding: 80px 0;
    background: #00425e;
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #E5E7EB;
}

.btn-whatsapp {
    background: white;
    color: #00425e;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

.btn-whatsapp:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* 🦶 Footer */
.footer {
    background-color: #acde03;
    padding: 50px 0 20px;
    color: #333;
}

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

.footer-section h3, .footer-section h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    color: #666;
}

.footer-section ul li i {
    color: #666;
    margin-right: 10px;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00425e;
}

.footer-section p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #2a236e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #90ee02;
    transform: translateY(-2px);
}

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

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* ⚠️ Cookie Bar */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-bar.show {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
    margin-right: 1rem;
}

.btn-accept {
    background: #00425e;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept:hover {
    background: #003349;
}

/* Improved Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .content-wrapper {
        gap: 3rem;
    }

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .nav-menu li {
        margin: 1rem 0;
        justify-content: center;
        width: 100%;
    }

    .nav-menu li a {
        justify-content: center;
        width: 100%;
        padding: 0.5rem;
    }

    .nav-menu .li-btn {
        margin-top: 1.5rem;
        display: flex;
        justify-content: center;
    }

    .nav-menu .btn-whatsapp-nav {
        margin: 0 auto;
        width: 80%;
        max-width: 300px;
        justify-content: center;
    }

    .nav-menu .btn-whatsapp-nav a {
        color: white;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    ul.dropdown {
        position: static;
        display: none;
        width: 100%;
        background: #f5f5f5;
        box-shadow: none;
        border: none;
    }

    .nav-menu li:hover > ul.dropdown {
        display: none;
    }

    .nav-menu li.active > ul.dropdown {
        display: block;
    }

    ul.dropdown li a {
        padding: 10px;
        text-align: center;
    }

    .btn-contact {
        display: none;
    }

    .hero {
        padding: 100px 0;
        min-height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        padding: 0 20px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .text-content {
        text-align: center;
    }

    .text-content h2 {
        font-size: 2rem;
    }

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

    .workflow-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

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

    .social-links {
        justify-content: center;
    }

    .cookie-bar {
        padding: 1rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
        padding: 0 10px;
    }

    .text-content h2 {
        font-size: 1.8rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .workflow-step {
        padding: 1.5rem;
    }

    .cta {
        padding: 50px 0;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .btn-whatsapp {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .footer {
        padding: 40px 0 20px;
    }
}

/* Fix for very small devices */
@media (max-width: 320px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .text-content h2 {
        font-size: 1.6rem;
    }

    .service-card {
        padding: 1.2rem;
    }

    .workflow-step {
        padding: 1.2rem;
    }
}

/* Improved image handling */
.image-content img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Better touch targets for mobile */
@media (max-width: 768px) {
    .nav-menu a,
    .footer-section ul li a {
        padding: 15px;
        display: block;
    }

    .social-links a {
        width: 50px;
        height: 50px;
    }
}

/* Improved button handling for mobile */
@media (hover: none) {
    .btn-blue,
    .btn-whatsapp,
    .btn-contact {
        transition: none;
    }

    .btn-blue:active,
    .btn-whatsapp:active,
    .btn-contact:active {
        transform: scale(0.98);
    }
}

.section-tag {
    display: block;
    color: #00425e;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.text-content {
    max-width: 600px;
}

.link-down {
    color: #00425e;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.link-down:hover {
    color: #003349;
}

/* Responsivo */
@media (max-width: 1200px) {
    .workflow-steps {
        grid-template-columns: repeat(7, 1fr);
        gap: 1rem;
    }
    
    .workflow-step {
        grid-column: span 1;
    }
    
    .workflow-arrow {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .workflow-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .workflow-arrow {
        display: none;
    }
}

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

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
}

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

.btn-blue {
    background: #00425e;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-blue:hover {
    background: #003349;
    transform: translateY(-2px);
}