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

:root {
    --color-background: #0B132B;
    --color-background-secondary: #1C2541;
    --color-text: #E0E0E0;
    --color-text-accent: #fff;
    --color-primary: #5BC0BE;
    --color-secondary: #4C6085;
    --color-highlight: #FFD700;
    --color-highlight-secondary: #FF7F50;
    --border-radius: 0.5rem;
    --transition-speed: 0.3s;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    position: relative;
    padding: 5rem 0;
}

.section-divider {
    position: absolute;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    height: 5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-text-accent);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--color-text);
    transition: color var(--transition-speed);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all var(--transition-speed);
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
    color: var(--color-text-accent);
}

.btn-outline {
    background: linear-gradient(to right, var(--color-background), var(--color-secondary));
    color: var(--color-text-accent);
    border: 1px solid rgba(92, 192, 190, 0.3);
}

.btn-studio {
    background: linear-gradient(to right, var(--color-highlight), var(--color-highlight-secondary));
    color: var(--color-background);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    color: var(--color-text-accent);
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.btn i {
    margin-left: 0.5rem;
}

/* Particle Background */
.particle-background {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.star-layer {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 4px),
        radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 2px),
        radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 4px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
}

.geometric-shape {
    position: absolute;
}

.circle-gradient {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91,192,190,0.3) 0%, rgba(91,192,190,0) 70%);
    top: 15%;
    left: 10%;
    animation: pulse 8s ease-in-out infinite;
}

.circle-border {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid rgba(255,215,0,0.2);
    top: 60%;
    right: 5%;
    animation: rotate 100s linear infinite;
}

.gradient-square {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(255,127,80,0.2), rgba(255,127,80,0));
    bottom: 20%;
    left: 15%;
    animation: float 12s ease-in-out infinite;
}

.hexagon {
    width: 80px;
    height: 80px;
    background: rgba(255,215,0,0.15);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    top: 40%;
    left: 30%;
    animation: rotate 30s linear infinite;
}

/* Animation Keyframes */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.4; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -5px); }
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(150px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all var(--transition-speed);
}

.navbar.scrolled {
    background-color: rgba(11, 19, 43, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-accent);
    font-weight: bold;
}

.logo-text {
    margin-left: 0.75rem;
    color: var(--color-text-accent);
    font-weight: bold;
    font-size: 1.25rem;
}

.desktop-nav {
    display: none;
}

.nav-link {
    position: relative;
    color: var(--color-text-accent);
    padding: 0.5rem 0.25rem;
    margin: 0 1rem;
    transition: color var(--transition-speed);
}

.nav-link:hover {
    color: var(--color-highlight);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--color-highlight);
    left: 0;
    bottom: 0;
    transition: width var(--transition-speed);
}

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

.mobile-menu-btn {
    background: transparent;
    border: none;
    color: var(--color-text-accent);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-background-secondary);
    border-left: 1px solid rgba(76, 96, 133, 0.3);
    z-index: 100;
    transition: right var(--transition-speed);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-container {
    padding: 2rem;
}

.close-menu-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--color-text-accent);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
}

.mobile-nav-link {
    color: var(--color-text-accent);
    font-size: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(76, 96, 133, 0.3);
}

.mobile-nav-link:hover {
    color: var(--color-highlight);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    z-index: 10;
    position: relative;
}

.hero-text {
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title-gradient {
    background: linear-gradient(to right, var(--color-primary), var(--color-highlight));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    max-width: 36rem;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-graphic {
    position: relative;
    width: 18rem;
    height: 18rem;
}

.planet-container {
    position: relative;
    width: 100%;
    height: 100%;
    animation: float 6s ease-in-out infinite;
}

.planet {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    box-shadow: 
        0 0 20px rgba(91, 192, 190, 0.5), 
        inset 15px -15px 40px rgba(0, 0, 0, 0.3);
}

.planet-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 50px;
    border: 8px solid rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotateX(75deg);
}

.orbiting-elements {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
}

.orbiting-element {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.orbiting-element.gold {
    width: 24px;
    height: 24px;
    background: var(--color-highlight);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    top: 0;
    left: calc(50% - 12px);
    animation: orbit 15s linear infinite;
}

.orbiting-element.coral {
    width: 16px;
    height: 16px;
    background: var(--color-highlight-secondary);
    box-shadow: 0 0 15px rgba(255, 127, 80, 0.5);
    bottom: 30px;
    right: 20px;
    animation: orbit 20s linear infinite reverse;
}

.orbiting-element.teal {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    box-shadow: 0 0 15px rgba(91, 192, 190, 0.5);
    bottom: 10px;
    left: 40px;
    animation: orbit 25s linear infinite;
}

/* APERTAS Section */
.apertas-section {
    background-color: var(--color-background-secondary);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    padding: 0.375rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.section-badge span {
    display: block;
    background-color: var(--color-background-secondary);
    padding: 0.25rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.studio-badge {
    background: linear-gradient(to right, var(--color-highlight), var(--color-highlight-secondary));
}

.studio-badge span {
    background-color: var(--color-background);
}

.contact-badge {
    background: linear-gradient(to right, var(--color-primary), var(--color-highlight));
}

.contact-badge span {
    background-color: var(--color-background-secondary);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    max-width: 48rem;
    margin: 0 auto;
}

.apertas-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.apertas-info, .apertas-mockup {
    flex: 1;
}

.apertas-card {
    background-color: var(--color-background);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed);
}

.apertas-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.apertas-card-title {
    color: var(--color-highlight);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.apertas-card-description {
    margin-bottom: 1.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(76, 96, 133, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--color-primary);
}

.studio-icon {
    color: var(--color-highlight);
    background-color: rgba(255, 215, 0, 0.2);
}

.feature-title {
    color: var(--color-text-accent);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.feature-description {
    font-size: 0.875rem;
}

.card-action {
    margin-top: 2rem;
}

/* Software Mockup */
.software-mockup {
    background-color: var(--color-background);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(76, 96, 133, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mockup-titlebar {
    height: 2rem;
    background-color: var(--color-background);
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    border-bottom: 1px solid rgba(76, 96, 133, 0.3);
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.window-control-btn {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.orange {
    background-color: var(--color-highlight-secondary);
}

.yellow {
    background-color: var(--color-highlight);
}

.teal {
    background-color: var(--color-primary);
}

.window-title {
    margin-left: 1rem;
    font-size: 0.75rem;
    color: var(--color-text);
}

.mockup-content {
    display: grid;
    grid-template-columns: 2rem 1fr 30%;
    min-height: 15rem;
}

.tools-sidebar {
    background-color: var(--color-background);
    border-right: 1px solid rgba(76, 96, 133, 0.3);
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.tool-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 0.25rem;
    background-color: rgba(76, 96, 133, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.tool-active {
    background-color: rgba(255, 215, 0, 0.2);
    color: var(--color-highlight);
}

.canvas-area {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animation-canvas {
    height: 100%;
    width: 100%;
    border: 1px dashed rgba(76, 96, 133, 0.3);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.animation-preview {
    position: relative;
    width: 6rem;
    height: 6rem;
    animation: pulse 4s ease-in-out infinite;
}

.animation-circle-1, .animation-circle-2, .animation-circle-3 {
    position: absolute;
    border-radius: 50%;
}

.animation-circle-1 {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0));
}

.animation-circle-2 {
    width: 75%;
    height: 75%;
    top: 12.5%;
    left: 12.5%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.5), rgba(255, 215, 0, 0));
}

.animation-circle-3 {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.7), rgba(255, 215, 0, 0));
}

.canvas-label {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--color-text);
}

.properties-panel {
    background-color: var(--color-background);
    border-left: 1px solid rgba(76, 96, 133, 0.3);
    padding: 0.75rem;
}

.panel-header {
    font-size: 0.75rem;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.property-item {
    background-color: var(--color-background-secondary);
    border-radius: 0.25rem;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
}

.property-label {
    font-size: 0.75rem;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.property-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
}

.property-slider {
    height: 0.25rem;
    background-color: rgba(76, 96, 133, 0.2);
    border-radius: 9999px;
}

.slider-fill {
    height: 100%;
    width: 75%;
    background-color: var(--color-primary);
    border-radius: 9999px;
}

.timeline-bar {
    height: 3rem;
    background-color: var(--color-background);
    border-top: 1px solid rgba(76, 96, 133, 0.3);
    padding: 0 0.75rem;
    display: flex;
    align-items: center;
}

.play-btn {
    width: 1.5rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.timeline-progress {
    flex-grow: 1;
    height: 0.75rem;
    background-color: var(--color-background-secondary);
    border-radius: 9999px;
    margin: 0 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 33%;
    background-color: var(--color-highlight);
}

.timeline-time {
    font-size: 0.75rem;
    color: var(--color-text);
}

/* Numlink Studio Section */
.numlink-studio-section {
    background-color: var(--color-background);
    position: relative;
}

.studio-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 3rem;
}

.studio-info, .studio-showcase {
    flex: 1;
}

.studio-card {
    background-color: var(--color-background-secondary);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed);
}

.studio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.studio-card-title {
    color: var(--color-highlight);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.showcase-item {
    border-radius: 0.5rem;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
}

.showcase-item:hover .play-overlay {
    opacity: 1;
}

.blue-bg {
    background-color: rgba(76, 96, 133, 0.2);
}

.yellow-bg {
    background-color: rgba(255, 215, 0, 0.2);
}

.teal-bg {
    background-color: rgba(91, 192, 190, 0.2);
}

.coral-bg {
    background-color: rgba(255, 127, 80, 0.2);
}

.showcase-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
}

.showcase-title {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.showcase-category {
    font-size: 0.75rem;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, transparent, rgba(11, 19, 43, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.play-button {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(255, 215, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button i {
    color: var(--color-background);
    font-size: 1.25rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--color-background-secondary);
    position: relative;
}

.contact-card {
    max-width: 64rem;
    margin: 0 auto;
}

.contact-content {
    background-color: var(--color-background);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-content::before, .contact-content::after {
    content: '';
    position: absolute;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    opacity: 0.1;
}

.contact-content::before {
    background: linear-gradient(to bottom right, var(--color-primary), var(--color-secondary));
    top: -4rem;
    right: -4rem;
}

.contact-content::after {
    background: linear-gradient(to bottom right, var(--color-highlight), var(--color-highlight-secondary));
    bottom: -4rem;
    left: -4rem;
}

.contact-info, .contact-form-container {
    position: relative;
    z-index: 1;
}

.contact-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.contact-detail-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(76, 96, 133, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--color-primary);
}

.contact-label {
    color: var(--color-text-accent);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.highlighted-email {
    color: var(--color-highlight);
    font-weight: bold;
    position: relative;
}

.highlighted-email::before, .highlighted-email::after {
    content: '//';
    color: var(--color-highlight-secondary);
}

.highlighted-email::before {
    margin-right: 0.25rem;
}

.highlighted-email::after {
    margin-left: 0.25rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: rgba(76, 96, 133, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all var(--transition-speed);
}

.social-link:hover {
    background-color: var(--color-primary);
    color: var(--color-text-accent);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background-color: var(--color-background-secondary);
    border: 1px solid rgba(76, 96, 133, 0.3);
    color: var(--color-text-accent);
    transition: border-color var(--transition-speed);
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--color-primary);
    outline: none;
}

.form-textarea {
    resize: vertical;
    min-height: 6rem;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Footer */
.footer {
    background-color: var(--color-background);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(76, 96, 133, 0.2);
}

.footer-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
    margin-bottom: 1.5rem;
    text-align: center;
}

.footer-tagline {
    max-width: 20rem;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-link {
    color: var(--color-text);
    transition: color var(--transition-speed);
}

.footer-link:hover {
    color: var(--color-highlight);
}

.footer-bottom {
    border-top: 1px solid rgba(76, 96, 133, 0.2);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copyright, .footer-contact {
    font-size: 0.875rem;
    color: var(--color-text);
}

.footer-contact {
    margin-top: 1rem;
}

/* Toast */
.toast {
    position: fixed;
    bottom: -100px;
    right: 1.5rem;
    max-width: 24rem;
    background-color: var(--color-background-secondary);
    border: 1px solid rgba(76, 96, 133, 0.3);
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: bottom 0.3s ease-in-out;
}

.toast.show {
    bottom: 1.5rem;
}

.toast-content {
    padding: 1rem;
}

.toast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.toast-title {
    font-size: 1rem;
    margin: 0;
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 1.25rem;
    cursor: pointer;
}

.toast-body {
    font-size: 0.875rem;
}

/* Media Queries */
@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-content {
        flex-direction: row;
    }
    
    .hero-text {
        flex: 1;
        text-align: left;
    }
    
    .hero-description {
        margin-left: 0;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .hero-graphic {
        flex: 1;
    }
    
    .apertas-content, .studio-content {
        flex-direction: row;
    }
    
    .contact-content {
        display: flex;
        gap: 2.5rem;
    }
    
    .contact-info, .contact-form-container {
        flex: 1;
    }
    
    .footer-main {
        flex-direction: row;
    }
    
    .footer-brand {
        margin-bottom: 0;
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-contact {
        margin-top: 0;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}