/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #FFD700;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #FFC800;
}

/* Serviços Section */
.services {
    background: #000;
    padding: 5rem 0;
    color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #fff;
}

.section-title p {
    color: #fff;
    font-size: 1.1rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateX(10px);
}

.service-image-container {
    flex: 0 0 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

/* Sobre Section */
.about {
    padding: 5rem 0;
    background-color: #000;
    color: #fff;
}

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

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    position: relative;
    min-height: 400px;
    background: url('images/about.jpg') center/cover;
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-content {
    flex: 1;
    padding: 2rem;
}

.about-content h2 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.about-content p {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

    .about-image {
        order: -1;
    }
}

/* Contato Section */
.contact {
    background: #000;
    padding: 5rem 0;
    color: #fff;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.contact-item {
    padding: 2rem;
}

.contact-item i {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-info h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info p {
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 4rem 0 2rem;
}

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

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: #FFD700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info {
        align-items: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-links {
        align-items: center;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
}

.whatsapp-float i {
    margin: 0;
}

/* Navbar */
.navbar {
    background: #000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

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

.navbar-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

.navbar-menu li a:hover,
.navbar-menu li a.active {
    color: #FFD700;
}

.navbar-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFD700;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: #fff;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    min-width: 200px;
    padding: 0.5rem 0;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.5rem 1rem;
    display: block;
    color: #fff;
    font-size: 0.9rem;
}

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

.nav-cta {
    background: #FFD700;
    color: #000 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 4px;
    transition: background-color 0.3s ease !important;
}

.nav-cta:hover {
    background: #FFC800 !important;
    color: #000 !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

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

    .about-image {
        order: -1;
    }

    .mobile-menu-btn {
        display: block;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .navbar-menu.active {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 1rem;
    }

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

    .navbar-menu li a {
        display: block;
        padding: 0.5rem 0;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .service-image-container {
        flex: 0 0 200px;
        width: 100%;
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

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

.privacy-section,
.terms-section {
    background: #000;
    color: #fff;
    padding: 120px 0 5rem;
    min-height: 100vh;
}

.privacy-section h1,
.terms-section h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.privacy-section h2,
.terms-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.privacy-section h3,
.terms-section h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.privacy-section p,
.terms-section p {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.privacy-section ul,
.terms-section ul {
    color: #fff;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.privacy-section li,
.terms-section li {
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-section a,
.terms-section a {
    color: #FFD700;
    text-decoration: none;
}

.privacy-section a:hover,
.terms-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-section,
    .terms-section {
        padding: 100px 1rem 2rem;
    }

    .privacy-section h1,
    .terms-section h1 {
        font-size: 2rem;
    }

    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3,
    .terms-section h3 {
        font-size: 1.3rem;
    }
}

html {
    scroll-behavior: smooth;
}

/* Política e Termos Pages */
.policy-section,
.terms-section {
    background: #000;
    color: #fff;
    padding: 120px 0 5rem;
    min-height: 100vh;
}

.policy-content,
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.policy-content h1,
.terms-content h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-content h2,
.terms-content h2 {
    color: #fff;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.policy-content p,
.terms-content p {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.policy-content ul,
.terms-content ul {
    color: #fff;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-content li,
.terms-content li {
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-content a,
.terms-content a {
    color: #FFD700;
    text-decoration: none;
}

.policy-content a:hover,
.terms-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-content,
    .terms-content {
        padding: 0 1rem;
    }

    .policy-content h1,
    .terms-content h1 {
        font-size: 2rem;
    }

    .policy-content h2,
    .terms-content h2 {
        font-size: 1.5rem;
    }
} 