/* Estilos Principais - Andreia Ribeiro Makeup */

/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de cores em tons claros e bege */
    --color-primary: #f8d9d0;       /* Rosa claro */
    --color-secondary: #f1e4d8;     /* Bege claro */
    --color-accent: #e8b4b8;        /* Rosa antigo */
    --color-light: #faf6f2;         /* Quase branco */
    --color-dark: #6d5c5a;          /* Marrom acinzentado escuro */
    --color-text: #4a3e3c;          /* Texto principal */
    --color-text-light: #796f6d;    /* Texto secundário */
    
    /* Fontes */
    --font-primary: 'Poppins', sans-serif;
    
    /* Sombras */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    
    /* Arredondamentos */
    --radius-small: 4px;
    --radius-medium: 8px;
    --radius-large: 16px;
    
    /* Espaçamentos */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-light);
    line-height: 1.6;
    font-size: 16px;
}

.page-wrapper {
    overflow: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--spacing-md);
    font-weight: 500;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

ul {
    list-style: none;
}

section {
    padding: var(--spacing-xl) 0;
    scroll-margin-top: 80px; /* Espaço para o header fixo quando rolar até a seção */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Botões */
.btn {
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

/* Novos estilos para o botão "Ver trabalhos" (agora "Agendar sessão") */
button {
  position: relative;
  padding: 12px 35px;
  background: #d0929b;
  font-size: 18px;
  font-weight: 700;
  font-family: "Ubuntu", sans-serif;
  letter-spacing: 0.05em;
  color: white;
  border: 3px solid #d0929b;
  border-radius: 8px;
  box-shadow: 0 0 0 rgba(208, 146, 155, 0.55);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.star-1 {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-2 {
  position: absolute;
  top: 45%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 {
  position: absolute;
  top: 40%;
  left: 40%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4 {
  position: absolute;
  top: 20%;
  left: 40%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-5 {
  position: absolute;
  top: 25%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s ease;
}

button:hover {
  background: #f8d9d0;
  color: #6d5c5a;
  box-shadow: 0 0 25px rgba(208, 146, 155, 0.55);
  border-color: #f8d9d0;
}

button:hover .star-1 {
  position: absolute;
  top: -80%;
  left: -30%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-2 {
  position: absolute;
  top: -25%;
  left: 10%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-3 {
  position: absolute;
  top: 55%;
  left: 25%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-4 {
  position: absolute;
  top: 30%;
  left: 80%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-5 {
  position: absolute;
  top: 25%;
  left: 115%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-6 {
  position: absolute;
  top: 5%;
  left: 60%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.fil0 {
  fill: #fffdef;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.4s ease;
}

.header.scrolled {
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--color-dark);
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.header.scrolled .logo h1 {
    color: var(--color-dark);
}

.tagline {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.header.scrolled .tagline {
    color: var(--color-text-light);
}

.main-nav ul {
    display: flex;
    gap: var(--spacing-lg);
}

.main-nav a {
    position: relative;
    padding: var(--spacing-xs) 0;
    color: var(--color-dark);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.header.scrolled .main-nav a {
    color: var(--color-dark);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover, 
.main-nav a.active {
    color: var(--color-accent);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 6px 0;
    transition: all 0.3s ease;
}

.header.scrolled .mobile-menu-toggle span {
    background-color: var(--color-dark);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: #fdf6f0;
    color: var(--color-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    gap: 0;
}

.hero-content {
    width: 50%;
    position: relative;
    z-index: 5;
    padding-left: 50px;
    padding-right: 50px;
    text-align: left;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-headline {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    position: relative;
}

.hero-headline .highlight {
    color: var(--color-accent);
    position: relative;
    display: inline-block;
}

.hero-headline .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 0.2em;
    background-color: var(--color-primary);
    opacity: 0.6;
    z-index: -1;
}

.hero-tagline {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 0;
}

.hero-cta a {
    text-decoration: none;
    display: inline-block;
    width: 220px;
}

.hero-cta button {
    width: 100%;
}

.hero-visual {
    width: 50%;
    height: 100%;
    position: relative;
    margin-left: 0;
    right: 0;
    padding-left: 40px;
    padding-right: 150px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.visual-element {
    position: absolute;
}

.visual-circle {
    border-radius: 50%;
    position: absolute;
    opacity: 0.8;
}

.main-visual {
    width: 95%;
    height: 95%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 30px 200px 30px 200px;
    box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.1);
    right: 0;
    position: relative;
    margin-left: 0;
    object-fit: cover;
}

.main-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(248, 217, 208, 0.15);
    border-radius: 30px 200px 30px 200px;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background-color: var(--color-primary);
    opacity: 0.4;
    top: 20%;
    left: 120px;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 120px;
    height: 120px;
    background-color: var(--color-accent);
    opacity: 0.2;
    bottom: 25%;
    left: 180px;
    z-index: 2;
    animation: float 10s ease-in-out infinite 1s;
}

.circle-3 {
    width: 80px;
    height: 80px;
    background-color: var(--color-secondary);
    opacity: 0.3;
    top: 25%;
    right: 180px;
    z-index: 2;
    animation: float 7s ease-in-out infinite 0.5s;
}

.circle-4 {
    width: 100px;
    height: 100px;
    background-color: var(--color-primary);
    opacity: 0.5;
    bottom: 15%;
    left: 200px;
    z-index: 2;
    animation: float 9s ease-in-out infinite 0.7s;
}

.visual-line {
    position: absolute;
    background-color: var(--color-accent);
    opacity: 0.2;
}

.line-1 {
    width: 150px;
    height: 1px;
    transform: rotate(45deg);
    top: 35%;
    left: 150px;
}

.line-2 {
    width: 100px;
    height: 1px;
    transform: rotate(-30deg);
    bottom: 30%;
    right: 200px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-bottom {
    position: relative;
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 50px 30px;
    z-index: 10;
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--color-dark);
    transition: transform 0.3s ease;
    margin-left: 0;
}

.hero-scroll-indicator:hover {
    transform: translateY(5px);
}

.hero-scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.hero-scroll-indicator i {
    font-size: 1rem;
    color: var(--color-accent);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Sobre Mim */
.about {
    background-color: var(--color-light);
}

.about-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
    padding: 0;
    max-width: 450px;
    position: relative;
    background: white;
    box-shadow: 0 10px 30px rgba(232, 180, 184, 0.2);
}

/* Elementos bolhas decorativas à frente da imagem */
.about-image .deco-circle-1 {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-primary);
    opacity: 0.8;
    bottom: -25px;
    right: 60px;
    z-index: 10;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    animation: float-enhanced 7s ease-in-out infinite;
}

.about-image .deco-circle-2 {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-accent);
    opacity: 0.8;
    top: 30px;
    left: 60px; /* Movida mais para a esquerda */
    z-index: 10;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    animation: float-enhanced 5s ease-in-out infinite 0.5s;
}

/* Adicionar uma terceira bolha para enriquecer a composição */
.about-image .deco-circle-3 {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    opacity: 0.8;
    bottom: 50px;
    left: 120px; /* Ajustado de 30px para 120px, movendo mais para a direita */
    z-index: 10;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    animation: float-enhanced 6s ease-in-out infinite 1s;
}

/* Uma animação melhorada para as bolhas com mais movimento */
@keyframes float-enhanced {
    0% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-15px) translateX(7px);
    }
    50% {
        transform: translateY(5px) translateX(-7px);
    }
    75% {
        transform: translateY(-10px) translateX(3px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

.about-img:hover {
    transform: scale(1.02);
}

.image-placeholder {
    background-color: var(--color-primary);
    border-radius: var(--radius-medium);
    height: 400px;
    width: 100%;
    display: none; /* Escondido agora que temos a imagem real */
}

.about-qualities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.quality {
    text-align: center;
    background-color: var(--color-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.quality:hover {
    transform: translateY(-5px);
}

.quality-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.quality h4 {
    margin-bottom: var(--spacing-xs);
}

.quality p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Serviços */
.services {
    background-color: var(--color-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.service-card {
    background-color: var(--color-light);
    border-radius: var(--radius-medium);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.service-details {
    text-align: left;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(109, 92, 90, 0.1);
}

.service-details li {
    margin-bottom: var(--spacing-xs);
    position: relative;
    padding-left: 1.5rem;
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* Portfólio */
.portfolio {
    background-color: var(--color-light);
    padding-bottom: var(--spacing-xl);
}

.portfolio-filter,
.gallery-placeholder,
.gallery-grid,
.gallery-item,
.gallery-image.placeholder,
.gallery-overlay {
    display: none;
}

/* Novos estilos para "Novidades em Breve" */
.coming-soon {
    text-align: center;
    padding: 4rem 2rem;
    background-color: white;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 217, 208, 0.2) 0%, rgba(232, 180, 184, 0.1) 100%);
    z-index: 0;
}

.coming-soon::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(232, 180, 184, 0.1);
    bottom: -50px;
    right: -50px;
    z-index: 0;
}

.coming-soon-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
    position: relative;
    display: inline-block;
    z-index: 1;
}

.coming-soon-icon::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: rgba(232, 180, 184, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.coming-soon-title {
    font-size: 2.2rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.coming-soon-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.coming-soon-text a {
    color: var(--color-accent);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.coming-soon-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.coming-soon-text a:hover {
    color: var(--color-dark);
}

.coming-soon-text a:hover::after {
    width: 100%;
}

/* Animação para a seção "Novidades em Breve" */
.coming-soon {
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Adicione uma animação de pulsação ao ícone */
.coming-soon-icon i {
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

/* Contacto */
.contact {
    background-color: var(--color-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.contact-info {
    background-color: var(--color-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-medium);
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.contact-list {
    margin: var(--spacing-lg) 0;
}

.contact-list li {
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
}

.contact-list li strong {
    margin-right: var(--spacing-sm);
    min-width: 80px;
}

.social-contact {
    margin-top: var(--spacing-lg);
}

.social-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-contact a:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}

.social-contact .fab.fa-instagram {
    font-size: 1.6rem;
    color: var(--color-accent);
}

.footer-social a {
    color: var(--color-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    transform: scale(1.2);
    color: var(--color-primary);
}

.contact-form {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.form-group {
    margin-bottom: var(--spacing-md);
    animation: slideIn 0.6s ease-out forwards;
    animation-delay: calc(0.1s * var(--i));
    opacity: 0;
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-small);
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-group select,
.form-group input[type="date"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-small);
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
    background-color: white;
}

.form-group select:focus,
.form-group input[type="date"]:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: var(--spacing-md) 0; /* Reduzindo o padding para tornar o footer mais baixo */
}

.footer-content {
    display: flex; /* Alterado de grid para flex para melhor ajuste com apenas 2 elementos */
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md); /* Reduzido o espaço após o conteúdo */
    animation: fadeIn 0.8s ease-out forwards;
}

.footer h3, .footer h4 {
    color: var(--color-light);
    margin-bottom: var(--spacing-sm); /* Reduzido o margin para compactar */
}

.footer a {
    color: var(--color-light);
    opacity: 0.8;
}

.footer a:hover {
    opacity: 1;
    color: var(--color-primary);
}

.social-icons {
    display: none; /* Esconder esta classe, já que não estamos mais usando */
}

.fab.fa-instagram {
    font-size: 1.8rem;
}

.contact-info .social-icons a {
    color: var(--color-dark);
}

.contact-info .social-icons a:hover {
    color: var(--color-accent);
}

.copyright {
    text-align: center;
    padding-top: var(--spacing-sm); /* Reduzido o padding superior */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

.copyright a {
    color: var(--color-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.copyright a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 992px) {
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero-container {
        flex-direction: column;
        justify-content: center;
        padding: 30px;
    }
    
    .hero-content, 
    .hero-visual {
        width: 100%;
        text-align: center;
        padding: 0;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .hero-headline {
        font-size: 3rem;
    }
    
    .hero-tagline {
        margin: 0 auto 2rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .main-visual {
        position: relative;
        height: 350px;
        width: 100%;
        right: auto;
        border-radius: 30px 100px 30px 100px;
    }
    
    .circle-1 {
        width: 150px;
        height: 150px;
        left: -10px;
    }
    
    .circle-2 {
        width: 80px;
        height: 80px;
    }
    
    .circle-3 {
        width: 60px;
        height: 60px;
    }
    
    .hero-bottom {
        flex-direction: column;
        gap: 2rem;
        padding: 20px;
    }
    
    .hero-scroll-indicator {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--color-light);
        box-shadow: var(--shadow-soft);
        padding: var(--spacing-lg) 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 99;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav a {
        display: block;
        padding: var(--spacing-sm) 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        align-items: flex-start;
        margin-left: 0;
    }
    
    .hero-cta a {
        width: 80%;
    }
    
    .hero-cta button {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .footer-logo, .footer-social {
        width: 100%;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    :root {
        --spacing-lg: 1.5rem;
        --spacing-xl: 3rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero {
        height: 60vh;
    }
    
    .service-card,
    .contact-info,
    .contact-form {
        padding: var(--spacing-md);
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        align-items: flex-start;
        margin-left: 0;
    }
    
    .hero-cta a {
        width: 80%;
    }
    
    .hero-cta button {
        width: 100%;
    }
    
    .main-visual {
        height: 250px;
        border-radius: 20px 80px 20px 80px;
    }
    
    .about-qualities {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Classe adicional para evitar problemas de transparência */
.btn-wrapper {
    position: relative;
    display: inline-block;
    z-index: 10;
}

/* Estilo específico para o botão do formulário de contato */
.contact-form button[type="submit"] {
  position: relative;
  padding: 12px 35px;
  background: #e8b4b8;
  font-size: 17px;
  font-weight: 500;
  color: white;
  border: 3px solid #e8b4b8;
  border-radius: 8px;
  box-shadow: 0 0 0 rgba(232, 180, 184, 0.55);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.contact-form button[type="submit"]:hover {
  background: transparent;
  color: #e8b4b8;
  box-shadow: 0 0 25px rgba(232, 180, 184, 0.55);
}

/* Escondendo o título */
.coming-soon-title {
    visibility: hidden;
    display: none; /* Escondendo o título completamente */
}

/* Estilos para mensagens de sucesso e erro no formulário */
#success-message, #error-message {
    padding: 10px 15px;
    border-radius: var(--radius-small);
    margin-top: 15px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

#success-message.visible, #error-message.visible {
    opacity: 1;
    transform: translateY(0);
}

#success-message {
    background-color: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

#error-message {
    background-color: rgba(244, 67, 54, 0.1);
    color: #d32f2f;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Estilo para o botão de envio desativado */
.contact-form button[type="submit"]:disabled {
    background-color: #cccccc;
    border-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    box-shadow: none;
}

/* Estilo para o botão de verificar disponibilidade */
.hero-btn-link {
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
}

.hero-btn-link:focus {
    outline: none;
}

.hero-btn-link button {
    cursor: pointer;
}

#submit-btn {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#submit-btn.hidden {
    opacity: 0;
    visibility: hidden;
} 