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

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

/* .logo{
    scale: 3;

} */

.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;
}

/* .navbar {
    padding: 1rem 0;
} */

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

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

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

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

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

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

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

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

.nav-menu li {
    position: relative;
    list-style: none;
    list-style-type: none;
}

.nav-menu li a{
    font-weight: 900;
    color: #333;
}

.dropdown{
    border-radius: 16px;
}

.dropdown > li {
    list-style-type: none;
}

/* 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;
}

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;
}

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

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

.btn-contact {
    background: #DC2626;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.btn-red {
    background: #DC2626;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

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

.btn-whatsapp {
    background: #DC2626;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

/* 🎬 Banner Principal */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(75, 75, 75, 1), rgba(75, 75, 75, 0.57)), url('assets/Screenshot_3-1-1170x536.png') center/cover;
    color: white;
    padding: 150px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
}

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

/* 📝 Apresentação */
.apresentacao {
    padding: 80px 0;
    background: #f8f9fa;
}

.content-wrapper {
    display: flex;
    min-width: 800px;
    justify-content: center;
    flex-direction: row;
    gap: 4rem;
    align-items: center;
}

p{
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.8;
}

.text-content h2 {
    font-size: 2rem;
    color: black;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.text-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.8;
}

.image-content {
    top: 40px;
    position: relative;
}

.image-content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* 🎥 O que fazemos */
.servicos {
    padding: 80px 0;
    background: white;
}

.servicos-header {
    text-align: center;
    margin-bottom: 4rem;
}

.servicos-header h2 {
    font-size: 2.5rem;
    color: black;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.servicos-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.servico-card {
    background: #f8f9fa;
    padding:1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.servico-card .icon {
    width: 10%
}

.servico-card h3 {
    font-size: 1.8rem;
    color: black;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.servico-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* 📸 Portfólio */
.portfolio {
    padding: 80px 0;
    background: #f8f9fa;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 4rem;
}

.portfolio-header h2 {
    font-size: 2.5rem;
    color: black;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.portfolio-item {
    position: relative;
    border-radius: 15px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 16/10;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item p{
    color: white;
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.portfolio-overlay p {
    color: white;
}

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

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

/* ✨ Call to Action */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937, #374151);
    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;
}

/* 🦶 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;
}

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

.logo-text-footer {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #ccc;
    max-width: 200px;
    line-height: 1.4;
}

.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: #DC2626;
}

.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: #DC2626;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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


.inac-tema{
    color: white;
    margin-bottom: 1rem;
}


.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  background: #000;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  margin: auto;
}

.modal video,
.modal iframe {
  width: 100%;
  height: 90%;
  display: block;
  background-color: #000;
  outline: none;
}

/* Garante que os controles do vídeo fiquem visíveis */
.modal video::-webkit-media-controls {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.modal video::-webkit-media-controls-enclosure {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.close-btn {
  position: absolute;
  top: -40px;
  right: -40px;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 1;
}

.close-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        min-width: auto;
        flex-direction: column;
        gap: 2rem;
    }

    .footer-section p {
        width: auto;
    }

    .servicos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 70px;
    }

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

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

    .apresentacao {
        padding: 40px 0;
    }

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

    .servicos-header h2,
    .portfolio-header h2 {
        font-size: 2rem;
    }

    .servicos-header p {
        font-size: 1.1rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .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;
        z-index: 999;
        align-items: center;
        gap: 1rem;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

    .nav-menu .li-btn {
        width: calc(100% - 40px);
        margin: 1rem 20px;
    }

    .nav-menu .btn-whatsapp-nav {
        width: 100%;
        justify-content: center;
        margin: 0;
        border-radius: 8px;
    }

    .nav-menu .btn-whatsapp-nav a {
        color: white !important;
        justify-content: center;
        font-weight: 500;
    }

    .cookie-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-text {
        margin-right: 0;
    }

    /* Modal responsivo */
    .modal-content {
        width: 95%;
        max-height: 80vh;
    }

    .modal video,
    .modal iframe {
        height: 100%;
    }

    .close-btn {
        top: -40px;
        right: 0;
    }

    .li-btn {
        margin-top: 1rem;
    }

    .btn-whatsapp-nav {
        width: auto;
        margin: 0 1rem;
    }

    .logo-footer {
        max-width: 180px;
        margin-top: 0;
    }
}

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

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

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

    .servicos-header h2,
    .portfolio-header h2 {
        font-size: 1.8rem;
    }

    .servico-card {
        padding: 1.5rem;
    }

    .portfolio-overlay {
        padding: 1rem;
    }

    .portfolio-overlay h3 {
        font-size: 1.1rem;
    }

    .cta {
        padding: 40px 0;
    }

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

    .btn-whatsapp {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .logo-footer {
        max-width: 150px;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .servico-card {
        padding: 1rem;
    }

    .btn-whatsapp-nav {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

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