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

/* Preload font per Safari/iOS */
@font-face {
    font-family: 'Poppins';
    font-weight: 200;
    font-style: normal;
    src: url('https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLFj_Z11lFc-K.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-weight: 300;
    font-style: normal;
    src: url('https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8Z11lFc-K.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-weight: 400;
    font-style: normal;
    src: url('https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecg.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-weight: 600;
    font-style: normal;
    src: url('https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6Z11lFc-K.woff2') format('woff2');
    font-display: swap;
}

/* Impact font - usando Antonio come alternativa web-safe */
@font-face {
    font-family: 'Antonio';
    font-weight: 700;
    font-style: normal;
    src: url('https://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8BtIY2DwSXlM.woff2') format('woff2');
    font-display: swap;
}

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

header {
    background-color: #fff;
    color: #000;
    padding: 60px 20px;
    border-bottom: 8px solid #000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding-bottom: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    border-bottom: 4px solid #000;
}

.logo {
    width: 500px;
    height: auto;
    max-width: 90%;
}

/* Fix font rendering in SVG for Safari */
.logo text,
.logo-mobile text {
    font-family: 'Poppins', sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.logo-mobile {
    display: none;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    letter-spacing: 1px;
    font-weight: 300;
    margin-bottom: 10px;
}

.name {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    letter-spacing: 1px;
    font-weight: 300;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 15px;
}

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

.service-section {
    margin-bottom: 60px;
}

h2 {
    font-family: Impact, 'Antonio', 'Arial Black', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border-left: 8px solid #fff;
    padding-left: 20px;
}

.intro {
    font-size: 1.2rem;
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.8;
}

.intro strong {
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background-color: #fff;
    color: #000;
    padding: 40px;
    border: 4px solid #000;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 10px 10px 0 #fff;
}

.service-card h3 {
    font-family: Impact, 'Antonio', 'Arial Black', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

.cta-section {
    text-align: center;
    padding: 80px 20px;
    background-color: #fff;
    color: #000;
    margin-top: 60px;
}

.cta-section h2 {
    border-left: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 20px 60px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border: 4px solid #000;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.cta-button:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 8px 8px 0 #000;
    transform: translate(-4px, -4px);
}

/* Pricing Section */
.pricing-section {
    background-color: #000;
    padding: 80px 20px;
}

.pricing-section h2 {
    border-left: 8px solid #fff;
    padding-left: 20px;
}

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

.pricing-card {
    background-color: #fff;
    color: #000;
    padding: 40px;
    border: 4px solid #000;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 10px 10px 0 #fff;
}

.pricing-card.featured {
    border: 8px solid #000;
    transform: scale(1.05);
}

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

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #000;
    color: #fff;
    padding: 5px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-family: Impact, 'Antonio', 'Arial Black', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.benefits {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    flex-grow: 1;
}

.benefits li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.benefits li:before {
    content: "✓ ";
    font-weight: bold;
    margin-right: 8px;
}

.price {
    font-family: Impact, 'Antonio', 'Arial Black', sans-serif;
    font-size: 3rem;
    margin: 30px 0 20px;
    letter-spacing: 1px;
}

.price-custom {
    font-family: Impact, 'Antonio', 'Arial Black', sans-serif;
    font-size: 2rem;
    margin: 30px 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card .cta-button {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Contact Section */
.contact-section {
    background-color: #fff;
    color: #000;
    padding: 80px 20px;
}

.contact-section h2 {
    border-left: none;
    padding-left: 0;
    text-align: center;
}

.contact-section .intro {
    text-align: center;
}

.contact-methods {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 50px;
}

.contact-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 40px 60px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border: 4px solid #000;
    transition: all 0.3s ease;
    min-width: 250px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-button .icon {
    font-size: 3rem;
}

.contact-button:hover {
    background-color: #fff;
    color: #000;
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 #000;
}

@media (max-width: 768px) {
    .logo {
        display: none;
    }

    .logo-mobile {
        display: block;
        width: 150px;
    }

    h1, .name {
        font-size: 2rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    nav {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

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

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .contact-methods {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-button {
        min-width: auto;
    }
}

/* Privacy Section */
.privacy-section {
    background-color: #000;
    color: #fff;
    padding: 80px 20px;
}

.privacy-section h2 {
    border-left: 8px solid #fff;
    padding-left: 20px;
}

.privacy-content {
    max-width: 900px;
    margin: 50px auto 0;
}

.privacy-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.privacy-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.privacy-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-content ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    font-weight: 300;
}

.privacy-content .last-update {
    margin-top: 50px;
    font-style: italic;
}

.privacy-footer {
    background-color: #fff;
    color: #000;
    text-align: center;
    padding: 30px 20px;
    border-top: 4px solid #000;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    color: #000;
    padding: 25px 20px;
    border-top: 4px solid #000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-banner-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept-btn {
    background-color: #000;
    color: #fff;
    border: 3px solid #000;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.cookie-accept-btn:hover {
    background-color: #fff;
    color: #000;
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 #000;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-accept-btn {
        flex: 1;
    }
}

/* Maintenance Page */
body.maintenance-page {
    min-height: 100vh;
}

.maintenance-main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 40px 20px;
    text-align: center;
}

.maintenance-logo-button {
    appearance: none;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: default;
}

.maintenance-logo {
    width: 220px;
    max-width: 70vw;
    height: auto;
}

.maintenance-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0;
}

@media (max-width: 768px) {
    .maintenance-title {
        font-size: 1.8rem;
    }
}
