.elementor-696 .elementor-element.elementor-element-2369dad{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS *//* ===============================================
   DANA T PSYCHOLOGY - SERVICIOS ESPECIALIZADOS
   Landing Page Styles
   =============================================== */

@charset "UTF-8";

:root {
  --police-blue: #3E4E63;
  --police-blue-light: #4a5d75;
  --green-sheen: #6DAAA9;
  --green-sheen-dark: #5a9594;
  --jet-stream: #B0D8C2;
  --chinese-white: #E2EFDF;
  --black: #1a1a1a;
  --white: #ffffff;
  --cream: #F8FAF7;
  --gray: #6b7280;
  --dark-gray: #374151;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--black);
  background: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============== HERO =============== */
.hero {
  min-height: 90vh;
  background: var(--police-blue);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(62,78,99,0.95) 0%, rgba(62,78,99,0.8) 50%, rgba(109,170,169,0.4) 100%);
  z-index: 1;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  opacity: 0.05;
  background-image: radial-gradient(circle at 2px 2px, var(--white) 1px, transparent 0);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--jet-stream);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(36px, 4.5vw, 54px);
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 400;
  line-height: 1.15;
}

.hero h1 em {
  font-style: italic;
  color: var(--jet-stream);
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  max-width: 540px;
  font-weight: 300;
  line-height: 1.9;
}

.hero-subtitle strong {
  color: var(--jet-stream);
  font-weight: 500;
}

.hero-features {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.hero-feature svg {
  width: 18px;
  height: 18px;
  color: var(--jet-stream);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green-sheen);
  color: var(--white);
  padding: 18px 40px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  margin-top: 24px;
  border-radius: 4px;
}

.hero-cta:hover {
  background: var(--jet-stream);
  color: var(--police-blue);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(109,170,169,0.3);
}

.hero-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 8px;
  filter: brightness(1.05);
}

.hero-image-frame {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--green-sheen);
  border-radius: 8px;
  pointer-events: none;
  opacity: 0.6;
}

/* =============== BRANDING ELEMENTS =============== */
.brand-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.brand-divider-img {
  width: 180px;
  height: auto;
}

.section-tag {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--green-sheen);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  font-weight: 600;
}

/* =============== SERVICIOS SECTION =============== */
.servicios-section {
  padding: 30px 0 70px 0;
  background: var(--white);
}

.servicios-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.servicios-header h2 {
  font-size: clamp(32px, 4vw, 46px);
  color: var(--police-blue);
  margin-bottom: 20px;
}

.servicios-header h2 em {
  color: var(--green-sheen);
  font-style: italic;
}

.servicios-header p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.8;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.servicio-card {
  background: var(--cream);
  padding: 36px 28px;
  border-radius: 8px;
  border-left: 4px solid var(--green-sheen);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.servicio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--chinese-white) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.servicio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(62,78,99,0.1);
}

.servicio-card:hover::before {
  opacity: 1;
}

.servicio-card-content {
  position: relative;
  z-index: 1;
}

.servicio-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 2px solid var(--green-sheen);
}

.servicio-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green-sheen);
}

.servicio-card h3 {
  font-size: 20px;
  color: var(--police-blue);
  margin-bottom: 12px;
  font-style: italic;
}

.servicio-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.servicios-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 24px auto 0;
}

/* =============== TESTIMONIOS SECTION =============== */
.testimonios-section {
  padding: 70px 0;
  background: var(--cream);
}

.testimonios-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.testimonios-header h2 {
  font-size: clamp(32px, 4vw, 44px);
  color: var(--police-blue);
  margin-bottom: 20px;
}

.testimonios-header h2 em {
  color: var(--green-sheen);
  font-style: italic;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonio-card {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(62,78,99,0.08);
  position: relative;
}

.testimonio-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--jet-stream);
  line-height: 1;
  opacity: 0.5;
}

.testimonio-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--police-blue);
  font-style: italic;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.testimonio-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(109,170,169,0.2);
}

.testimonio-author-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--police-blue);
  margin: 0 0 4px 0;
}

.testimonio-author-info p {
  font-size: 13px;
  color: var(--gray);
  margin: 0;
}

/* =============== SOBRE DIANA (BREVE) =============== */
.about-brief-section {
  padding: 70px 0;
  background: var(--white);
}

.about-brief-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-brief-image {
  position: relative;
}

.about-brief-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}

.about-brief-content h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  color: var(--police-blue);
  margin-bottom: 20px;
}

.about-brief-content h2 em {
  color: var(--green-sheen);
  font-style: italic;
}

.about-brief-content p {
  font-size: 16px;
  color: var(--dark-gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-brief-content p strong {
  color: var(--police-blue);
  font-weight: 500;
}

.about-credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(109,170,169,0.2);
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.credential-item svg {
  width: 24px;
  height: 24px;
  color: var(--green-sheen);
  flex-shrink: 0;
  margin-top: 2px;
}

.credential-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--police-blue);
  margin: 0 0 4px 0;
  line-height: 1.4;
}

.credential-place {
  font-size: 13px;
  color: var(--gray);
  margin: 0;
  line-height: 1.4;
}

.about-brief-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--green-sheen);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-brief-cta:hover {
  color: var(--police-blue);
}

.about-brief-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.about-brief-cta:hover svg {
  transform: translateX(4px);
}

/* =============== VALORACIÓN / CONTACTO =============== */
.valoracion-section {
  padding: 70px 0;
  background: var(--police-blue);
}

.valoracion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.valoracion-content h2 {
  font-size: clamp(32px, 4vw, 42px);
  color: var(--white);
  margin-bottom: 20px;
}

.valoracion-content h2 em {
  color: var(--jet-stream);
  font-style: italic;
}

.valoracion-content > p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}

.valoracion-features {
  margin: 30px 0;
}

.valoracion-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.valoracion-feature svg {
  width: 20px;
  height: 20px;
  color: var(--jet-stream);
}

.valoracion-feature span {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}

.valoracion-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--green-sheen);
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.valoracion-cta:hover {
  background: var(--jet-stream);
  color: var(--police-blue);
  transform: translateY(-2px);
}

.valoracion-image {
  position: relative;
}

.valoracion-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
}

.valoracion-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  padding: 20px 28px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.valoracion-badge p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--green-sheen);
  margin: 0;
  line-height: 1;
}

.valoracion-badge span {
  font-size: 13px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============== FINAL CTA =============== */
.final-cta {
  padding: 60px 0;
  background: var(--white);
}

.final-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--police-blue);
  margin-bottom: 20px;
}

.final-cta h2 em {
  color: var(--green-sheen);
  font-style: italic;
}

.final-cta p {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.8;
}

.final-cta a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green-sheen);
  color: var(--white);
  padding: 18px 40px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  border-radius: 4px;
}

.final-cta a:hover {
  background: var(--police-blue);
  transform: translateY(-2px);
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1024px) {
  .hero-grid,
  .about-brief-grid,
  .valoracion-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .servicios-grid {
    grid-template-columns: 1fr;
  }

  .servicios-grid-bottom {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .testimonios-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-wrapper {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero-features {
    flex-direction: column;
    gap: 16px;
  }

  .about-credentials {
    grid-template-columns: 1fr;
  }
}

/* =============== ANIMATIONS =============== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text > * {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-tag { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 0.3s; }
.hero-features { animation-delay: 0.4s; }
.hero-cta { animation-delay: 0.5s; }/* End custom CSS */