/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e5e5e5;
}

.navbar {
    padding: 1.5rem 0;
}

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

.nav-logo h2 {
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a1a1a;
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 1px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
}

.hero-content {
    max-width: 500px;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 6px;
    animation: fadeInUp 1s ease;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #ccc;
    animation: fadeInUp 1s ease 0.2s both;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 3rem;
    color: #aaa;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 0;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #1a1a1a;
    color: white;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-shapes {
    position: relative;
    width: 400px;
    height: 400px;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.05);
    border: 1px solid rgba(26, 26, 26, 0.1);
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 50px;
    right: 0;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 0;
    left: 50px;
    animation-delay: 4s;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: #2a2a2a;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    color: white;
    letter-spacing: 2px;
}

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

.service-card {
    background: #1a1a1a;
    padding: 3rem 2rem;
    border-radius: 0;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.02) 0%, rgba(26, 26, 26, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #ccc;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #ccc;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Brands Section */
.brands {
    padding: 120px 0;
    background: #1a1a1a;
}

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

.brand-card {
    background: #2a2a2a;
    border-radius: 0;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.02) 0%, rgba(26, 26, 26, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-card:hover::before {
    opacity: 1;
}

.brand-card:hover {
    transform: translateY(-5px);
    border-color: #ccc;
}

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

.brand-card h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: 1px;
}

.brand-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.brand-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.brand-features span {
    background: #1a1a1a;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 0;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.brand-link:hover {
    transform: translateY(-2px);
    background: #333;
    color: white;
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.2);
}

.brand-link i {
    font-size: 0.8rem;
}

.brand-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.brand-shape {
    width: 80px;
    height: 80px;
    border-radius: 0;
    background: #1a1a1a;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.brand-card:hover .brand-shape {
    transform: rotate(45deg) scale(1.1);
}

/* Brand-specific colors */
.brand-xture .brand-shape {
    background: #4CAF50; /* Verde */
}

.brand-xture .brand-features span {
    background: #4CAF50;
}

.brand-xture .brand-link {
    background: #4CAF50;
}

.brand-xture .brand-link:hover {
    background: #45a049;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.brand-sibarita .brand-shape {
    background: #E2725B; /* Terracota */
}

.brand-sibarita .brand-features span {
    background: #E2725B;
}

.brand-sibarita .brand-link {
    background: #E2725B;
}

.brand-sibarita .brand-link:hover {
    background: #D2691E;
    box-shadow: 0 8px 25px rgba(226, 114, 91, 0.3);
}

.brand-ahouse .brand-shape {
    background: #8B4513; /* Café */
}

.brand-ahouse .brand-features span {
    background: #8B4513;
}

.brand-ahouse .brand-link {
    background: #8B4513;
}

.brand-ahouse .brand-link:hover {
    background: #A0522D;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #2a2a2a;
    color: white;
}

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

.contact-info h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: white;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.9;
    line-height: 1.6;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 20px;
    color: #4CAF50;
}

.contact-item span {
    color: white;
    font-weight: 500;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.6;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #ccc;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .brand-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .brand-features {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .brand-card {
        padding: 2rem 1.5rem;
    }
    
    .hero {
        padding: 0 1rem;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 120px 0 80px;
    background: #1a1a1a;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.legal-header p {
    color: #ccc;
    font-size: 1rem;
}

.legal-body {
    background: #2a2a2a;
    padding: 3rem;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.legal-body h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    margin: 2rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.legal-body h2:first-child {
    border-top: none;
    margin-top: 0;
}

.legal-body h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    margin: 1.5rem 0 0.5rem;
}

.legal-body h4 {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    margin: 1rem 0 0.5rem;
}

.legal-body p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-body ul, .legal-body ol {
    color: #ccc;
    line-height: 1.7;
    margin: 1rem 0 1rem 2rem;
}

.legal-body li {
    margin-bottom: 0.5rem;
}

.legal-body strong {
    color: white;
    font-weight: 500;
}

.contact-info {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 0;
    margin-top: 1rem;
    border: 1px solid #333;
}

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

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 1rem 2rem;
    z-index: 10000;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #4CAF50;
    color: white;
}

.cookie-btn.accept:hover {
    background: #45a049;
}

.cookie-btn.decline {
    background: transparent;
    color: #ccc;
    border: 1px solid #ccc;
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .legal-body {
        padding: 2rem 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
} 