/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    color: #333;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

ul {
    list-style: none;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    min-height: 100vh;
    background-image: url("../images/go-the-style-is-candid-image-photography-with-natural.jpeg");
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
    filter: brightness(1.1); /* Aumenta brilho em 10% */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgb(0, 0, 0) 1%, rgba(13, 219, 255, 0) 20%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(0, 0, 0) 25%, rgba(13, 219, 255, 0) 60%);
    z-index: 2;
}

/* Geometric Shapes */
.geometric-shape {
    position: absolute;
    background-color: #231f20;
    z-index: 1;
}

.shape-1 {
    width: 50px;
    height: 50px;
    top: 10%;
    right: 15%;
    transform: rotate(45deg);
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 50px;
    height: 50px;
    bottom: 20%;
    right: 8%;
    transform: rotate(25deg);
    animation: float 10s ease-in-out infinite 1s;
}

.shape-3 {
    width: 50px;
    height: 50px;
    top: 50%;
    right: 30%;
    border-radius: 0%;
    border-color: rgba(0, 0, 0, 1);
    animation: float 12s ease-in-out infinite 2s;
}


@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    color: white;
}

.logo img {
    width: 250px;

}

.logo-text strong {
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav a:hover {
    color: #b9b9b9;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000000;
    transition: width 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.signup-btn {
    padding: 12px 30px;
    background: #231f20;
    border: 2px solid #231f20;
    color: #ffffff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.signup-btn:hover {
    background: #231f20;
    color: white;
}

.menu-btn {
    width: 45px;
    height: 45px;
    background: #231f20;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: transform 0.3s;
}

.menu-btn:hover {
    transform: scale(1.05);
}

.menu-btn span {
    width: 20px;
    height: 2px;
    background: white;
    display: block;
    transition: all 0.3s;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Content */
.hero-content {
    max-width: 700px;
    margin-top: 120px;
    margin-left: 50px;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 800;
    color: #cecece;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-content h2 {
    font-size: 32px;
    font-weight: 400;
    color: #949494;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #cecece;
    margin-bottom: 40px;
    max-width: 550px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.primary-btn {
    padding: 16px 40px;
    background: #00BF16;
    border-radius: 4px;
    font-size: 15px;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
}

.primary-btn:hover {
    background: #231f20;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.secondary-btn {
    padding: 16px 40px;
    background: transparent;
    border: 2px solid white;
    border-radius: 4px;
    font-size: 15px;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
}

.secondary-btn:hover {
    background: white;
    color: #231f20;
}

/* ========================================
   SECTION SHARED STYLES
   ======================================== */

.section-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #5A5F73;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #231f20;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

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

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    background: #f5f7fa;
    padding: 100px 50px;
    position: relative;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 20px 60px rgba(15, 37, 87, 0.15);
}

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

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid #000000;
    z-index: -1;
}

.about-content {
    padding-right: 20px;
}

.privacy-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: white;
    border-left: 4px solid #000000;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #231f20;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}


/* ========================================
   TABLE
   ======================================== */


/* ========================================
   COMPANIES SECTION
   ======================================== */

.companies-section {
    background: white;
    padding: 100px 50px;
    position: relative;
}

.companies-container {
    max-width: 1400px;
    margin: 0 auto;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.company-card:nth-child(4),
.company-card:nth-child(5) {
    grid-column: span 1;
}

.company-card:nth-child(4) {
    margin-left: auto;
    margin-right: 15px;
}

.company-card:nth-child(5) {
    margin-left: 15px;
    margin-right: auto;
}

.company-card {
    background: #f5f7fa;
    padding: 40px 30px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.company-card:hover {
    border-left-color: #000000;
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(15, 37, 87, 0.1);
}

.company-icon {
    width: 300px;
    height: 150px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    flex-shrink: 0;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
}

.company-icon img {
    width: 200px;
}

.company-name {
    font-size: 22px;
    font-weight: 700;
    color: #231f20;
    margin-bottom: 15px;
}

.company-description {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* ========================================
   CERTIFICATIONS SECTION
   ======================================== */

.certifications-section {
    background: #000000;
    padding: 100px 50px;
    position: relative;
}

.certifications-container {
    max-width: 1400px;
    margin: 0 auto;
}

.certifications-section .section-title {
    color: white;
}

.certifications-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.certifications-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.cert-card {
    flex: 0 1 350px;
}

.cert-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cert-card:hover {
    background: #231f20;
    border-color: #000000;
    transform: translateY(-5px);
}

.cert-logo {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    min-height: 100px; /* Garante espaçamento mínimo */
}

.cert-logo img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.cert-name {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    background: #f5f7fa;
    padding: 100px 50px;
    position: relative;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: white;
    border-left: 4px solid #000000;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #231f20;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    border-radius: 4px;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #231f20;
    margin-bottom: 8px;
}

.contact-text p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.contact-form {
    background: white;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(15, 37, 87, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    background: white;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px 40px;
    background: #231f20;
    color: white;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 4px;
}

.submit-btn:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* ========================================
   PRIVACY SECTION
   ======================================== */

.privacy-section {
    background: #f5f7fa;
    padding: 100px 100px 100px 100px;
    position: relative;
}

.privacy-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.privacy-section table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.privacy-section th, td {
    border: 1px solid #333;
    padding: 15px;
    text-align: left;
    vertical-align: top;
}

.privacy-section th {
    background-color: #f0f0f0;
    font-weight: bold;
    font-size: 14px;
}

.privacy-section td {
    font-size: 13px;
    line-height: 1.6;
}

.privacy-section .forma-coleta {
    width: 15%;
}

.privacy-section .dados-pessoais {
    width: 20%;
}

.privacy-section .finalidade {
    width: 65%;
}


/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: #231f20;
    color: #fff;
    padding: 80px 50px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 200px;
}

.footer-logo strong {
    font-weight: 700;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablets - 1024px */
@media (max-width: 1024px) {
    .certifications-grid {
        gap: 30px;
        max-width: 100%;
    }

    .cert-card {
        flex: 0 1 300px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
    }

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

    .company-card:nth-child(4),
    .company-card:nth-child(5) {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    .header {
        padding: 20px;
    }

    .nav {
        display: none;
    }

    .hero-content {
        margin-left: 20px;
        margin-top: 80px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

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

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .privacy-section {
        padding: 60px 20px;
    }

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

    .about-section {
        padding: 60px 20px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        height: 400px;
    }

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

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

    .companies-section {
        padding: 60px 20px;
    }

    .companies-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .company-card:nth-child(4),
    .company-card:nth-child(5) {
        margin-left: 0;
        margin-right: 0;
    }

    .certifications-section {
        padding: 60px 20px;
    }

    .certifications-grid {
        flex-direction: column;
        gap: 20px;
    }

    .cert-card {
        flex: 1;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer {
        padding: 60px 20px 30px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}



/* Small Mobile - 480px */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content h2 {
        font-size: 20px;
    }

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

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