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

/* Color Palette (Onda Finalização inspired) */
:root {
    --background-white: #FFFFFF;
    --text-dark: #333333;
    --link-blue: #ff5500;
    --border-gray: #E0E0E0;
    --button-hover-bg: #10ff67; /* Darker blue for hover */
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif; /* Using a common sans-serif like Onda */
    background-color: var(--background-white);
    color: var(--text-dark);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align to top for Onda-like layout */
    padding-top: 50px; /* Space from top */
}

.cosmic-container {
    position: relative;
    width: 100%;
    max-width: 960px; /* Onda's content width */
    padding: 20px;
}

/* Remove all motion-related elements and background shapes */
.psychedelic-bg, .wave, .floating-shapes, .shape, .floating-dot, .logo-glow, .btn-glow {
    display: none !important;
}

/* Content Wrapper (no background square) */
.content-wrapper {
    position: relative;
    z-index: 1;
    text-align: left; /* Onda's text alignment */
    max-width: 800px; /* Onda's content width */
    margin: 0 auto; /* Center content */
    padding: 0; 
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

/* Logo Section */
.logo-section {
    margin-bottom: 60px; /* Increased margin for better separation */
    display: flex;
    flex-direction: row; /* Logo and title side-by-side */
    align-items: center;
    justify-content: center; /* Center the logo and title block */
    gap: 25px; /* Increased space between logo and title */
}

.logo-container {
    display: inline-block;
}

.main-logo {
    width: 90px; /* Slightly larger logo */
    height: 90px;
    border-radius: 0; /* Onda's logo is not rounded */
    object-fit: contain; /* Ensure logo fits without cropping */
    filter: none; /* No shadows */
}

/* Studio Title */
.studio-title {
    font-family: Arial, sans-serif; /* Matching Onda's font */
    font-size: 3.5rem; /* Adjusted size */
    font-weight: bold;
    color: var(--text-dark);
    letter-spacing: 0;
    text-shadow: none;
    margin-bottom: 0;
}

/* Subtitle (adapted from Onda's ) */
.subtitle-container {
    position: relative;
    margin-top: 15px; /* Increased margin */
    margin-bottom: 40px; /* Increased margin */
    text-align: center; /* Center the subtitle */
}

.subtitle {
    font-family: Arial, sans-serif;
    font-size: 1rem; /* Slightly larger */
    font-weight: normal;
    letter-spacing: 0.08em; /* Increased letter spacing */
    color: var(--text-dark);
    text-transform: uppercase;
}

.subtitle-line {
    display: none; /* Onda doesn't have this line */
}

/* Description Section */
.description-section {
    margin-bottom: 50px; /* Increased margin */
    padding: 0; /* No extra padding */
    text-align: left; /* Onda's text alignment */
}

.main-description {
    font-family: Arial, sans-serif;
    font-size: 1.05rem; /* Slightly larger font */
    line-height: 1.7; /* Improved line height */
    color: var(--text-dark);
    max-width: 100%; /* Full width within content wrapper */
    margin: 0;
}

.highlight {
    color: var(--link-blue);
    font-weight: bold;
}

/* Section Headers */
.section-header {
    margin-bottom: 25px; /* Adjusted margin */
    padding: 0;
    text-align: left; /* Onda's text alignment */
}

.section-title {
    font-family: Arial, sans-serif;
    font-size: 2rem; /* Adjusted size */
    font-weight: bold;
    color: var(--text-dark);
    letter-spacing: 0;
    margin-bottom: 10px;
}

.title-decoration {
    display: none; /* Onda doesn't have this */
}

/* About Section */
.about-section {
    margin-bottom: 50px; /* Increased margin */
    padding: 0;
    text-align: left;
}

.about-text {
    font-family: Arial, sans-serif;
    font-size: 1.05rem; /* Slightly larger font */
    line-height: 1.7; /* Improved line height */
    color: var(--text-dark);
    max-width: 100%;
    margin: 0;
}

/* Services Section (added for clarity) */
.services-section {
    margin-bottom: 50px; /* Increased margin */
    padding: 0;
    text-align: left;
}

.services-section ul {
    list-style: none; /* Remove default list style */
    padding-left: 0;
}

.services-section li {
    font-family: Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px; /* Space for custom bullet */
}

.services-section li::before {
    content: '•'; /* Custom bullet point */
    color: var(--link-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Contact Section */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Increased gap between buttons */
    align-items: flex-start; /* Align links to left */
    padding: 0;
}

.contact-btn {
    display: inline-block;
    padding: 12px 25px; /* Adjusted padding for better button size */
    text-decoration: none;
    border-radius: 4px; /* Slightly rounded corners for modern look */
    font-weight: bold; /* Bolder text for buttons */
    font-size: 1rem; /* Adjusted font size */
    letter-spacing: 0.05em; /* Increased letter spacing */
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--link-blue); /* Consistent border color */
    color: var(--link-blue);
    background-color: transparent;
}

.contact-btn:hover {
    background-color: var(--button-hover-bg); /* Darker blue on hover */
    color: var(--background-white);
    border-color: var(--button-hover-bg); /* Match border color on hover */
}

.email-btn {
    border-color: var(--link-blue);
    color: var(--link-blue);
}

.email-btn:hover {
    background-color: var(--button-hover-bg);
    color: var(--background-white);
}

.behance-btn {
    border-color: var(--link-blue);
    color: var(--link-blue);
}

.behance-btn:hover {
    background-color: var(--button-hover-bg);
    color: var(--background-white);
}

/* Responsive Design (simplified) */
@media (max-width: 768px) {
    .logo-section {
        flex-direction: column; /* Stack logo and title on smaller screens */
        gap: 15px;
    }
    .main-logo {
        width: 70px;
        height: 70px;
    }
    .studio-title {
        font-size: 3rem;
    }
    .subtitle {
        font-size: 0.9rem;
    }
    .main-description, .about-text, .services-section li {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .contact-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .main-logo {
        width: 60px;
        height: 60px;
    }
    .studio-title {
        font-size: 2.5rem;
    }
    .subtitle {
        font-size: 0.8rem;
    }
    .main-description, .about-text, .services-section li {
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .contact-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

